7 lines
188 B
Ruby
7 lines
188 B
Ruby
class AddTitleBottomToArticles < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :articles, :title_bottom, :integer
|
|
add_column :articles, :gradient_cached, :boolean
|
|
end
|
|
end
|