Registration form more-or-less working, workshop scaffold is up
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user