femslash-city/migrations/104_sites_profile_enabled.rb

10 lines
161 B
Ruby
Raw Permalink Normal View History

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