chaix_app/db/migrate/20180730201038_add_infos_p_to_articles.rb
Nicolas Bally 6a8e471b82 intial
2019-02-01 13:53:57 +01:00

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