wedding-planner/db/migrate/20241103093955_remove_email_from_guests.rb

6 lines
125 B
Ruby
Raw Normal View History

class RemoveEmailFromGuests < ActiveRecord::Migration[7.2]
def change
remove_column :guests, :email, :string
end
end