rails-refresher/db/migrate/20240705004208_add_status_to_comments.rb

6 lines
123 B
Ruby
Raw Normal View History

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