Initial commit

This commit is contained in:
2013-10-08 22:10:03 -07:00
commit 5a94d69b3d
73 changed files with 1287 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class CreateSpaces < ActiveRecord::Migration
def change
create_table :spaces do |t|
t.string :name
t.string :type
t.string :address
t.string :hours
t.string :phone
t.string :email
t.string :website
t.text :description
t.timestamps
end
end
end