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

8 lines
167 B
Ruby
Raw Normal View History

2024-12-08 10:41:24 +00:00
# Copyright (C) 2024 Manuel Bustillo
class AllowUngroupedGuests < ActiveRecord::Migration[8.0]
def change
change_column_null :guests, :group_id, true
end
end