femslash-city/migrations/072_banned_commenting.rb

10 lines
166 B
Ruby
Raw Permalink Normal View History

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