You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
class CreateEvents < ActiveRecord::Migration
|
|
def change
|
|
create_table :events do |t|
|
|
t.string :title
|
|
t.string :slug
|
|
t.integer :event_type_id
|
|
t.integer :conference_id
|
|
t.text :info
|
|
t.integer :location_id
|
|
t.datetime :start_time
|
|
t.datetime :end_time
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|
|
|