diff --git a/db/migrate/20230331075755_drop_table_drop_down_lists.rb b/db/migrate/20230331075755_drop_table_drop_down_lists.rb new file mode 100644 index 000000000..a098b380e --- /dev/null +++ b/db/migrate/20230331075755_drop_table_drop_down_lists.rb @@ -0,0 +1,5 @@ +class DropTableDropDownLists < ActiveRecord::Migration[6.1] + def up + drop_table :drop_down_lists + end +end diff --git a/db/schema.rb b/db/schema.rb index b023fb8d2..481bdce5b 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2023_03_22_150907) do +ActiveRecord::Schema.define(version: 2023_03_31_075755) do # These are extensions that must be enabled in order to support this database enable_extension "pgcrypto" @@ -401,14 +401,6 @@ ActiveRecord::Schema.define(version: 2023_03_22_150907) do t.index ["user_id"], name: "index_dossiers_on_user_id" end - create_table "drop_down_lists", id: :serial, force: :cascade do |t| - t.datetime "created_at" - t.integer "type_de_champ_id" - t.datetime "updated_at" - t.string "value" - t.index ["type_de_champ_id"], name: "index_drop_down_lists_on_type_de_champ_id" - end - create_table "email_events", force: :cascade do |t| t.datetime "created_at", precision: 6, null: false t.string "message_id"