patch a few missing tests, deprecate server model, fix a few bugs

This commit is contained in:
Kyle Drake 2014-09-12 19:09:58 -07:00
parent 86990f3535
commit 50c1f67bdf
14 changed files with 90 additions and 49 deletions

View file

@ -0,0 +1,15 @@
Sequel.migration do
up {
DB.drop_table :servers
}
down {
DB.create_table! :servers do
primary_key :id
String :ip
Integer :slots_available
DateTime :created_at
DateTime :updated_at
end
}
end