mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 09:12:35 +02:00
9 lines
No EOL
154 B
Ruby
9 lines
No EOL
154 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.drop_column :sites, :ssl_cert_intermediate
|
|
}
|
|
|
|
down {
|
|
DB.add_column :sites, :ssl_cert_intermediate, :text
|
|
}
|
|
end |