add migration for site profile enabled flag

This commit is contained in:
Kyle Drake 2017-06-14 14:00:14 -07:00
parent 83756af770
commit a9c6ec8edb

View file

@ -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