mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
11 lines
No EOL
279 B
Ruby
11 lines
No EOL
279 B
Ruby
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 |