From 79c6b99802183a7c6155eed8166b8f428bdcb874 Mon Sep 17 00:00:00 2001 From: Colin Darie Date: Tue, 7 Nov 2023 11:45:02 +0100 Subject: [PATCH] fix(schema): remove foreign keys and index references but not existing in production --- db/schema.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index fd9d97f2c..0127fde13 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -65,7 +65,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_11_14_113317) do t.bigint "groupe_gestionnaire_id" t.datetime "updated_at", precision: nil t.bigint "user_id", null: false - t.index ["groupe_gestionnaire_id"], name: "index_administrateurs_on_groupe_gestionnaire_id" t.index ["user_id"], name: "index_administrateurs_on_user_id" end @@ -557,7 +556,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_11_14_113317) do t.string "statut", default: "tous" t.string "time_span_type", default: "everything", null: false t.datetime "updated_at", precision: nil, null: false - t.index ["instructeur_id"], name: "index_exports_on_instructeur_id" t.index ["key"], name: "index_exports_on_key" t.index ["procedure_presentation_id"], name: "index_exports_on_procedure_presentation_id" end