mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
7 lines
193 B
Ruby
7 lines
193 B
Ruby
|
class AddHiddenToPosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :posts, :hidden, :boolean, null: false, default: false
|
||
|
add_column :posts, :hidden_reason_id, :integer
|
||
|
end
|
||
|
end
|