Browse Source

Fix migrations

pull/45/head
Angel Aviel Domaoan 4 years ago committed by Angel Aviel Domaoan
parent
commit
b449107f0a
  1. 4
      db/migrate/20220215025319_remove_document_type_and_document_id_in_doctrines.rb

4
db/migrate/20220215025319_remove_document_type_and_document_id_in_doctrines.rb

@ -1,6 +1,6 @@
class RemoveDocumentTypeAndDocumentIdInDoctrines < ActiveRecord::Migration[6.1] class RemoveDocumentTypeAndDocumentIdInDoctrines < ActiveRecord::Migration[6.1]
def up def up
remove_column :doctrines, :document_type, :string safety_assured { remove_column :doctrines, :document_type, :string }
remove_column :doctrines, :document_id, :integer safety_assured { remove_column :doctrines, :document_id, :integer }
end end
end end

Loading…
Cancel
Save