improvements to admin interface

This commit is contained in:
Kyle Drake 2016-07-20 13:33:46 -07:00
parent 32ddc97a95
commit dc0bf88392
4 changed files with 42 additions and 50 deletions

View file

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