osem-fcy/db/migrate/20121223122842_create_venue_table.rb

21 lines
382 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-01-07 09:04:09 +01:00
class CreateVenueTable < ActiveRecord::Migration
def up
create_table :venues do |t|
t.string :guid
t.string :name
t.string :address
t.string :website
t.text :description
t.string :offline_map_url
t.string :offline_map_bounds
t.timestamps
end
end
def down
drop_table :venues
end
end