payre3p_app/db/migrate/20180730201038_add_infos_p_to_articles.rb
2018-08-02 23:49:05 +02: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