remove unused flagged_as_inappropiate_at column from debates and comments

This commit is contained in:
kikito
2015-08-27 10:35:13 +02:00
parent b640fcb398
commit a3e983f154
2 changed files with 21 additions and 17 deletions

View File

@@ -0,0 +1,6 @@
class RemoveFlaggedAsInappropiateAtFromCommentsAndDebates < ActiveRecord::Migration
def change
remove_column :debates, :flagged_as_inappropiate_at
remove_column :comments, :flagged_as_inappropiate_at
end
end