mirror of
https://github.com/neocities/neocities.git
synced 2025-07-25 03:48:22 +02:00
phone validation: bugfixes, tweaks and refinements
This commit is contained in:
parent
143704215f
commit
40e848e2c0
6 changed files with 58 additions and 16 deletions
11
migrations/120_fix_phone_sent_at.rb
Normal file
11
migrations/120_fix_phone_sent_at.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
Sequel.migration do
|
||||
up {
|
||||
DB.drop_column :sites, :phone_verification_sent_at
|
||||
DB.add_column :sites, :phone_verification_sent_at, Time
|
||||
}
|
||||
|
||||
down {
|
||||
DB.drop_column :sites, :phone_verification_sent_at
|
||||
DB.add_column :sites, :phone_verification_sent_at, :time
|
||||
}
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue