mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
19 lines
351 B
Ruby
19 lines
351 B
Ruby
|
|
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
|