femslash-city/migrations/121_phone_verification_attempts.rb

9 lines
181 B
Ruby
Raw Normal View History

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