Manuel Bustillo
cb42b86136
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m39s
6 lines
131 B
Ruby
6 lines
131 B
Ruby
class AddStatusToGuest < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :guests, :status, :integer, default: 0
|
|
end
|
|
end
|