diff --git a/migrations/104_sites_profile_enabled.rb b/migrations/104_sites_profile_enabled.rb new file mode 100644 index 00000000..2fd3b243 --- /dev/null +++ b/migrations/104_sites_profile_enabled.rb @@ -0,0 +1,9 @@ +Sequel.migration do + up { + DB.add_column :sites, :profile_enabled, :boolean, default: true + } + + down { + DB.drop_column :sites, :profile_enabled + } +end