rails-refresher/db/migrate/20240705004208_add_status_to_comments.rb
Tyrel Souza 8a91d51c39
finish
2024-07-04 21:00:08 -04:00

6 lines
123 B
Ruby

class AddStatusToComments < ActiveRecord::Migration[7.1]
def change
add_column :comments, :status, :string
end
end