wedding-planner/db/migrate/20241208102932_allow_ungrouped_guests.rb

6 lines
129 B
Ruby
Raw Normal View History

class AllowUngroupedGuests < ActiveRecord::Migration[8.0]
def change
change_column_null :guests, :group_id, true
end
end