Registration form more-or-less working, workshop scaffold is up

This commit is contained in:
Godwin
2014-03-13 21:20:17 -06:00
parent 4b79de7a24
commit 3d6ad3b432
22 changed files with 383 additions and 19 deletions
@@ -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
+16 -1
View File
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140308173325) do
ActiveRecord::Schema.define(version: 20140314025647) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -228,4 +228,19 @@ ActiveRecord::Schema.define(version: 20140308173325) do
t.datetime "updated_at"
end
create_table "workshops", force: true 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.datetime "created_at"
t.datetime "updated_at"
end
end