Repository URL to install this package:
Version:
0.4.2 ▾
|
class CreateEvents < ActiveRecord::Migration
def up
unless table_exists?('events')
create_table :events do |t|
t.string :title
t.datetime :starts
t.datetime :ends
t.text :description
t.string :location
t.string :venue_url
end
end
end
def down
drop_table :events
end
end