neocities/migrations/072_banned_commenting.rb
2015-07-29 22:29:36 -07:00

9 lines
166 B
Ruby

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