[Fix #233] Remove the champ_id column on commentaires

This commit is contained in:
gregoirenovel 2018-11-22 00:41:18 +01:00
parent e0cb8aef8e
commit 9bff7afabb
2 changed files with 6 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class RemoveChampIdFromCommentaires < ActiveRecord::Migration[5.2]
def change
remove_column :commentaires, :champ_id
end
end