fix(data): add missing foreign key on production between champs.dossier_id and dossier.id, use validate: false to delay validation
This commit is contained in:
parent
8e7e8d9624
commit
ccddf885f6
2 changed files with 8 additions and 1 deletions
|
@ -0,0 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class AddMissingIndexChampsToDossier < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_foreign_key :champs, :dossiers, if_not_exists: true, validate: false
|
||||
end
|
||||
end
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.0].define(version: 2024_07_29_160650) do
|
||||
ActiveRecord::Schema[7.0].define(version: 2024_08_26_130121) do
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "pg_buffercache"
|
||||
enable_extension "pg_stat_statements"
|
||||
|
|
Loading…
Reference in a new issue