Initial checkin of project. Creates sites and goes to dashboard

This commit is contained in:
Kyle Drake 2013-05-24 00:47:50 -07:00
parent d1d1d61f18
commit b2bdf32275
26 changed files with 540 additions and 0 deletions

View file

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