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.
19 lines
427 B
19 lines
427 B
11 years ago
|
class CreateWorkshops < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :workshops do |t|
|
||
|
t.string :title
|
||
|
t.string :slug
|
||
|
t.text :info
|
||
|
t.integer :conference_id
|
||
|
t.integer :workshop_stream_id
|
||
|
t.integer :workshop_presentation_style
|
||
|
t.integer :min_facilitators
|
||
|
t.integer :location_id
|
||
|
t.datetime :start_time
|
||
|
t.datetime :end_time
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|