discourse/db/migrate/20140408061512_add_wiki_to_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
174 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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