121_phone_verification_attempts.rb 181 B

123456789
  1. Sequel.migration do
  2. up {
  3. DB.add_column :sites, :phone_verification_attempts, :integer, default: 0
  4. }
  5. down {
  6. DB.drop_column :sites, :phone_verification_attempts
  7. }
  8. end