neocities/migrations/121_phone_verification_attempts.rb
2023-11-10 13:30:48 -06:00

9 lines
No EOL
181 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :phone_verification_attempts, :integer, default: 0
}
down {
DB.drop_column :sites, :phone_verification_attempts
}
end