neocities/migrations/039_privacy.rb
2014-08-31 20:25:59 -07:00

9 lines
179 B
Ruby

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