neocities/migrations/043_add_commenting_allowed_flag.rb

9 lines
No EOL
167 B
Ruby

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