rails-refresher/db/migrate/20240705004159_add_status_to_article.rb

6 lines
122 B
Ruby
Raw Permalink Normal View History

2024-07-05 01:00:08 +00:00
class AddStatusToArticle < ActiveRecord::Migration[7.1]
def change
add_column :articles, :status, :string
end
end