femslash-city/migrations/039_privacy.rb

10 lines
179 B
Ruby
Raw Permalink Normal View History

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