discourse/db/migrate/20130125002652_add_hidden_to_posts.rb

7 lines
193 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
class AddHiddenToPosts < ActiveRecord::Migration
def change
add_column :posts, :hidden, :boolean, null: false, default: false
add_column :posts, :hidden_reason_id, :integer
end
end