forgot the migration, of course

This commit is contained in:
Kyle Drake 2015-07-18 17:13:26 -07:00
parent 04d1ba7ae4
commit 64fb2cf4c4

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :admin_nsfw, :boolean
}
down {
DB.drop_column :sites, :admin_nsfw
}
end