removes all references to "review" (replaced by "archive")

This commit is contained in:
kikito
2015-08-26 13:48:57 +02:00
parent 3b3f25f14e
commit 6110284356
16 changed files with 71 additions and 65 deletions

View File

@@ -0,0 +1,6 @@
class RenameReviewedAtToArchivedAtInCommentsAndDebates < ActiveRecord::Migration
def change
rename_column :comments, :reviewed_at, :archived_at
rename_column :debates, :reviewed_at, :archived_at
end
end