phone verification attempts migration

This commit is contained in:
Kyle Drake 2023-11-10 13:30:48 -06:00
parent 7f05c2c9dc
commit 3ee578e696

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :phone_verification_attempts, :integer, default: 0
}
down {
DB.drop_column :sites, :phone_verification_attempts
}
end