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

10 lines
227 B
Ruby
Raw Permalink Normal View History

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