6 lines
152 B
Ruby
6 lines
152 B
Ruby
class AddImageToLangArticles < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :lang_articles, :without_text_image_file_id, :integer
|
|
end
|
|
end
|