7 lines
182 B
Ruby
7 lines
182 B
Ruby
class AddDraftColumnsToArticles < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :articles, :draft_title, :string
|
|
add_column :articles, :draft_content, :text
|
|
end
|
|
end
|