Merge pull request #8832 from mfo/US/drop_table-drop_down_lists

chore(données): supprime la table `drop_down_lists` qui est inutilisée
This commit is contained in:
mfo 2023-03-31 14:44:25 +00:00 committed by GitHub
commit a0e1fdc618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 9 deletions

View file

@ -0,0 +1,5 @@
class DropTableDropDownLists < ActiveRecord::Migration[6.1]
def up
drop_table :drop_down_lists
end
end

View file

@ -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"