docbrown/db/migrate/20171003191547_add_live_now_boolean_to_articles.rb
2018-02-28 16:11:08 -05:00

5 lines
150 B
Ruby

class AddLiveNowBooleanToArticles < ActiveRecord::Migration[5.1]
def change
add_column :articles, :live_now, :boolean, default: false
end
end