chore(données): supprime la table drop_down_lists
qui est inutilisée
This commit is contained in:
parent
b003fd8be8
commit
a859bd0fbf
2 changed files with 6 additions and 9 deletions
5
db/migrate/20230331075755_drop_table_drop_down_lists.rb
Normal file
5
db/migrate/20230331075755_drop_table_drop_down_lists.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class DropTableDropDownLists < ActiveRecord::Migration[6.1]
|
||||
def up
|
||||
drop_table :drop_down_lists
|
||||
end
|
||||
end
|
10
db/schema.rb
10
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"
|
||||
|
|
Loading…
Reference in a new issue