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