coton_app/db/migrate/20160113192513_add_title_bottom_to_articles.rb
2018-12-15 14:06:53 +01:00

7 lines
183 B
Ruby

class AddTitleBottomToArticles < ActiveRecord::Migration
def change
add_column :articles, :title_bottom, :integer
add_column :articles, :gradient_cached, :boolean
end
end