femslash-city/migrations/043_add_commenting_allowed_flag.rb

9 lines
167 B
Ruby
Raw Normal View History

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