Skip to content

Commit

Permalink
Remove unsupported collation setting
Browse files Browse the repository at this point in the history
The "utf8mb4_0900_ai_ci" collation doesn't exist in MySQL 5.7 (see #375)
  • Loading branch information
jvendetti committed Dec 19, 2024
1 parent a3b33f3 commit 96067e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2023_11_30_210229) do
create_table "analytics", id: :integer, charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
create_table "analytics", id: :integer, charset: "utf8mb4", force: :cascade do |t|
t.string "segment"
t.string "action"
t.string "bp_slice"
Expand All @@ -22,13 +22,13 @@
t.datetime "updated_at", precision: nil
end

create_table "licenses", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
create_table "licenses", charset: "utf8mb4", force: :cascade do |t|
t.text "encrypted_key"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
end

create_table "ontologies", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
create_table "ontologies", charset: "utf8mb4", force: :cascade do |t|
t.string "acronym", null: false
t.text "new_term_instructions"
t.text "custom_message"
Expand All @@ -37,15 +37,15 @@
t.index ["acronym"], name: "index_ontologies_on_acronym", unique: true
end

create_table "timeouts", id: :integer, charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
create_table "timeouts", id: :integer, charset: "utf8mb4", force: :cascade do |t|
t.string "path"
t.integer "ontology_id"
t.text "concept_id"
t.text "params"
t.timestamp "created"
end

create_table "virtual_appliance_users", id: :integer, charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
create_table "virtual_appliance_users", id: :integer, charset: "utf8mb4", force: :cascade do |t|
t.string "user_id"
t.datetime "created_at", precision: nil
t.datetime "updated_at", precision: nil
Expand Down

0 comments on commit 96067e9

Please sign in to comment.