wedding-planner/db/migrate/20240811170021_add_status_to_guest.rb
Manuel Bustillo cb42b86136
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m39s
Include confirmation status
2024-08-11 19:24:24 +02:00

6 lines
131 B
Ruby

class AddStatusToGuest < ActiveRecord::Migration[7.1]
def change
add_column :guests, :status, :integer, default: 0
end
end