17 lines
314 B
Ruby
17 lines
314 B
Ruby
class CreateSpaces < ActiveRecord::Migration
|
|
def change
|
|
create_table :spaces do |t|
|
|
t.string :name
|
|
t.string :category
|
|
t.string :address
|
|
t.string :hours
|
|
t.string :phone
|
|
t.string :email
|
|
t.string :website
|
|
t.text :description
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|