wedding-planner/db/migrate/20241208102932_allow_ungrouped_guests.rb
Manuel Bustillo 9f0773647f
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 2m37s
Add copyright notice / copyright_notice (pull_request) Successful in 3m11s
Run unit tests / unit_tests (pull_request) Successful in 4m23s
Add copyright notice
2024-12-08 10:41:24 +00:00

8 lines
167 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class AllowUngroupedGuests < ActiveRecord::Migration[8.0]
def change
change_column_null :guests, :group_id, true
end
end