From 17cee2ae066a192dac35cd1296474cff904f864a Mon Sep 17 00:00:00 2001 From: Rishabh Singh Date: Fri, 16 Aug 2019 16:57:15 +0530 Subject: [PATCH] Update booth factory and schema.rb --- db/schema.rb | 5 ++++- spec/factories/booths.rb | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index b199367e..3ee1dc80 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_06_03_143107) do +ActiveRecord::Schema.define(version: 2019_08_16_084920) do create_table "answers", force: :cascade do |t| t.string "title" @@ -39,6 +39,9 @@ ActiveRecord::Schema.define(version: 2019_06_03_143107) do t.integer "conference_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.boolean "accepted_code_of_conduct" + t.string "email" + t.string "special_requirements" end create_table "cfps", force: :cascade do |t| diff --git a/spec/factories/booths.rb b/spec/factories/booths.rb index 4de471c5..c822b4b7 100644 --- a/spec/factories/booths.rb +++ b/spec/factories/booths.rb @@ -7,6 +7,7 @@ FactoryBot.define do reasoning { Faker::Lorem.paragraph } website_url { Faker::Internet.url } submitter_relationship { Faker::Lorem.paragraph } + email { Faker::Internet.email } conference