mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
14 lines
379 B
Ruby
14 lines
379 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.add_column :sites, :gandi_handle, :text, index: true
|
|
|
|
# This is not as horrible as it looks.
|
|
# It basically serves as a temp password when account is released from reseller account.
|
|
DB.add_column :sites, :gandi_password, :text
|
|
}
|
|
|
|
down {
|
|
DB.drop_column :sites, :gandi_handle
|
|
DB.drop_column :sites, :gandi_password
|
|
}
|
|
end
|