mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
11 lines
No EOL
273 B
Ruby
11 lines
No EOL
273 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.add_column :sites, :email_confirmation_token, :text
|
|
DB.add_column :sites, :email_confirmed, :boolean, default: false
|
|
}
|
|
|
|
down {
|
|
DB.drop_column :sites, :email_confirmation_token
|
|
DB.drop_column :sites, :email_confirmed
|
|
}
|
|
end |