7 lines
183 B
Ruby
Executable File
7 lines
183 B
Ruby
Executable File
class AddTitleBottomToArticles < ActiveRecord::Migration
|
|
def change
|
|
add_column :articles, :title_bottom, :integer
|
|
add_column :articles, :gradient_cached, :boolean
|
|
end
|
|
end
|