6 lines
127 B
Ruby
6 lines
127 B
Ruby
class AddChapeauToLangArticles < ActiveRecord::Migration
|
|
def change
|
|
add_column :lang_articles, :chapeau, :text
|
|
end
|
|
end
|