* Add additional content boxes under posts * Fix issue with classic article for under content
5 lines
142 B
Ruby
5 lines
142 B
Ruby
class AddBoostedToArticles < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :articles, :boosted, :boolean, default: false
|
|
end
|
|
end
|