6 lines
123 B
Ruby
6 lines
123 B
Ruby
class AddStatusToComments < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :comments, :status, :string
|
|
end
|
|
end
|