chore(schema): remove dossier_corrections#kind, replaced in 5998cf

This commit is contained in:
Colin Darie 2023-07-13 18:39:48 +02:00
parent 27d4be442f
commit f2afe5008f
No known key found for this signature in database
GPG key ID: 8C76CADD40253590
3 changed files with 8 additions and 4 deletions

View file

@ -14,8 +14,6 @@ class DossierCorrection < ApplicationRecord
belongs_to :dossier
belongs_to :commentaire
self.ignored_columns += ['kind']
validates_associated :commentaire
scope :pending, -> { where(resolved_at: nil) }

View file

@ -0,0 +1,7 @@
class RemoveDossierCorrectionsKind < ActiveRecord::Migration[7.0]
def change
safety_assured do
remove_column :dossier_corrections, :kind, :string, default: 'incorrect', null: false
end
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2023_07_19_112020) do
ActiveRecord::Schema[7.0].define(version: 2023_07_18_113920) do
# These are extensions that must be enabled in order to support this database
enable_extension "pgcrypto"
enable_extension "plpgsql"
@ -336,7 +336,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_07_19_112020) do
t.bigint "dossier_id", null: false
t.datetime "resolved_at", precision: 6
t.datetime "updated_at", precision: 6, null: false
t.string "kind", default: "correction", null: false
t.string "reason", default: "incorrect", null: false
t.index ["commentaire_id"], name: "index_dossier_corrections_on_commentaire_id"
t.index ["dossier_id"], name: "index_dossier_corrections_on_dossier_id"