neocities/migrations/104_sites_profile_enabled.rb
2017-06-14 14:00:14 -07:00

9 lines
161 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :profile_enabled, :boolean, default: true
}
down {
DB.drop_column :sites, :profile_enabled
}
end