This commit is contained in:
albert
2013-03-23 12:06:49 -04:00
parent 7f5bdb0121
commit 2378e91006
6 changed files with 28 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
class AddHideDeletedPostsToUsers < ActiveRecord::Migration
def change
add_column :users, :hide_deleted_posts, :boolean, :null => false, :default => false
end
end