Skip to content

Commit

Permalink
Merge pull request #15046 from eduardoj/fix/add_missing_collation_in_…
Browse files Browse the repository at this point in the history
…versions_table

Add missing collation in versions table
  • Loading branch information
eduardoj committed Oct 11, 2023
2 parents e9a6fa9 + 0363f79 commit 2b71b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@
t.index ["login"], name: "users_login_index", unique: true, length: 255
end

create_table "versions", charset: "utf8mb4", force: :cascade do |t|
create_table "versions", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t|
t.string "item_type", limit: 191, null: false
t.bigint "item_id", null: false
t.string "event", null: false
Expand Down

0 comments on commit 2b71b83

Please sign in to comment.