discourse/db/migrate/20140408061512_add_wiki_to_...

6 lines
143 B
Ruby
Raw Normal View History

class AddWikiToPosts < ActiveRecord::Migration[4.2]
2014-05-13 08:53:11 -04:00
def change
add_column :posts, :wiki, :boolean, default: false, null: false
end
end