discourse/db/migrate/20130125002652_add_hidden_t...

7 lines
193 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05: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