docbrown/db/migrate/20180316143921_add_boosted_to_articles.rb
Ben Halpern c1e623ebc2
Add additional content boxes under posts (#86)
* Add additional content boxes under posts

* Fix issue with classic article for under content
2018-03-16 16:35:54 -04:00

5 lines
142 B
Ruby

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