Remove unused column

The index in schema.rb is not directly related to this modification, it should
have been part of 2b763e4484 but was presumably
forgotten
This commit is contained in:
Frederic Merizen 2019-03-11 15:12:07 +01:00
parent c72febfa82
commit 29a7ecb477
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class RemoveTypeFromTypesDeChamp < ActiveRecord::Migration[5.2]
def change
remove_column :types_de_champ, :type, :string
end
end