Record when a post was hidden

This commit is contained in:
Robin Ward
2014-06-20 15:03:02 -04:00
parent 533244f39d
commit 3811efa5e2
4 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddHiddenAtToPosts < ActiveRecord::Migration
def change
add_column :posts, :hidden_at, :timestamp
end
end