6 lines
132 B
Ruby
6 lines
132 B
Ruby
class AddChapeauToLangArticles < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :lang_articles, :chapeau, :text
|
|
end
|
|
end
|