mirror of
https://github.com/neocities/neocities.git
synced 2026-05-26 17:19:49 +00:00
10 lines
127 B
Ruby
10 lines
127 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.add_column :sites, :api_key, :text
|
|
}
|
|
|
|
down {
|
|
DB.drop_column :sites, :api_key
|
|
}
|
|
end
|