8 lines
224 B
Ruby
8 lines
224 B
Ruby
class AddInfosPToArticles < ActiveRecord::Migration
|
|
def change
|
|
add_column :articles, :label_text, :string
|
|
add_column :articles, :url, :string
|
|
add_column :articles, :breve, :boolean, :default => false
|
|
end
|
|
end
|