diff --git a/lib/tasks/chicon.rake b/lib/tasks/chicon.rake index 15f2775a1..3a201a177 100644 --- a/lib/tasks/chicon.rake +++ b/lib/tasks/chicon.rake @@ -72,12 +72,9 @@ namespace :chicon do hyatt = Venue.find_by name: "Hyatt Regency Chicago" if hyatt.rooms.count == 0 + # We only want the rooms that are going to potentially be used for programme Room.create!( [ - {venue_id: hyatt.id, name: "Skyway Foyer"}, - {venue_id: hyatt.id, name: "Skyway 260"}, - {venue_id: hyatt.id, name: "Skyway 272"}, - {venue_id: hyatt.id, name: "Plaza Foyer"}, {venue_id: hyatt.id, name: "Plaza AB"}, {venue_id: hyatt.id, name: "Michigan 1"}, {venue_id: hyatt.id, name: "Michigan 2"}, @@ -86,30 +83,10 @@ namespace :chicon do {venue_id: hyatt.id, name: "Randolph 1"}, {venue_id: hyatt.id, name: "Randolph 2"}, {venue_id: hyatt.id, name: "Randolph 3"}, - {venue_id: hyatt.id, name: "Randolph Boardroom"}, {venue_id: hyatt.id, name: "Roosevelt 1"}, - {venue_id: hyatt.id, name: "Roosevelt 2 Boardroom"}, {venue_id: hyatt.id, name: "Roosevelt 3"}, - {venue_id: hyatt.id, name: "Roosevelt Boardroom"}, - {venue_id: hyatt.id, name: "Monroe 1"}, - {venue_id: hyatt.id, name: "Monroe 2"}, - {venue_id: hyatt.id, name: "Monroe 3"}, - {venue_id: hyatt.id, name: "Monroe 4"}, - {venue_id: hyatt.id, name: "Monroe 5"}, {venue_id: hyatt.id, name: "Grand Ballroom"}, - {venue_id: hyatt.id, name: "Grand Ballroom North Storage"}, - {venue_id: hyatt.id, name: "Grand Ballroom South Storage"}, - {venue_id: hyatt.id, name: "Grand Ballroom Group Office"}, - {venue_id: hyatt.id, name: "Grand Ballroom Registration North"}, - {venue_id: hyatt.id, name: "Grand Ballroom Registration South"}, - {venue_id: hyatt.id, name: "Grand Ballroom Registration Office A"}, - {venue_id: hyatt.id, name: "Grand Ballroom Registration Office B"}, - {venue_id: hyatt.id, name: "Grand Suites Coatroom"}, - {venue_id: hyatt.id, name: "Grand Suites 1"}, - {venue_id: hyatt.id, name: "Grand Suites 2"}, {venue_id: hyatt.id, name: "Grand Suites 3"}, - {venue_id: hyatt.id, name: "Grand Suites 4"}, - {venue_id: hyatt.id, name: "Grand Suites 5"}, {venue_id: hyatt.id, name: "Grand Hall GH"}, {venue_id: hyatt.id, name: "Grand Hall I"}, {venue_id: hyatt.id, name: "Grand Hall J"}, @@ -124,42 +101,23 @@ namespace :chicon do {venue_id: hyatt.id, name: "Ogden"}, {venue_id: hyatt.id, name: "Wright"}, {venue_id: hyatt.id, name: "Addams"}, - {venue_id: hyatt.id, name: "Founders Foyer"}, {venue_id: hyatt.id, name: "Gallery Boardroom 1"}, {venue_id: hyatt.id, name: "Gallery Boardroom 2"}, {venue_id: hyatt.id, name: "Gallery Boardroom 3"}, {venue_id: hyatt.id, name: "Gallery Boardroom 4"}, {venue_id: hyatt.id, name: "Gallery 5"}, - {venue_id: hyatt.id, name: "Gallery Lounge 6"}, - {venue_id: hyatt.id, name: "Gallery Lounge 7"}, {venue_id: hyatt.id, name: "Crystal Ballroom A"}, {venue_id: hyatt.id, name: "Crystal Ballroom B"}, {venue_id: hyatt.id, name: "Crystal Ballroom C"}, {venue_id: hyatt.id, name: "Crystal Foyer"}, {venue_id: hyatt.id, name: "Comiskey"}, - {venue_id: hyatt.id, name: "Water Tower"}, - {venue_id: hyatt.id, name: "Gold Coast"}, - {venue_id: hyatt.id, name: "Haymarket"}, - {venue_id: hyatt.id, name: "Picasso"}, - {venue_id: hyatt.id, name: "Columbian"}, {venue_id: hyatt.id, name: "Soldier Field"}, {venue_id: hyatt.id, name: "Wrigley"}, {venue_id: hyatt.id, name: "Regency Ballroom ABC"}, {venue_id: hyatt.id, name: "Regency Ballroom D"}, - {venue_id: hyatt.id, name: "Regency Ballroom Main Registration Desk"}, {venue_id: hyatt.id, name: "Regency Ballroom South Registration Desk"}, {venue_id: hyatt.id, name: "Atlanta"}, - {venue_id: hyatt.id, name: "International Suites (Acapulco, Hong Kong, Toronto)"}, - {venue_id: hyatt.id, name: "New Orleans"}, - {venue_id: hyatt.id, name: "San Francisco"}, - {venue_id: hyatt.id, name: "Regency South Office"}, - {venue_id: hyatt.id, name: "Board of Trade"}, - {venue_id: hyatt.id, name: "Stetson Suite A"}, - {venue_id: hyatt.id, name: "Stetson Suite BC"}, - {venue_id: hyatt.id, name: "Stetson Suite D"}, - {venue_id: hyatt.id, name: "Stetson Suite E"}, - {venue_id: hyatt.id, name: "Stetson Suite F"}, - {venue_id: hyatt.id, name: "Stetson Suite G"}, + {venue_id: hyatt.id, name: "Other"}, {venue_id: hyatt.id, name: "Autographing"} ] ) @@ -171,10 +129,10 @@ namespace :chicon do {venue_id: airmeet.id, name: "Airmeet 1" }, {venue_id: airmeet.id, name: "Airmeet 2" }, {venue_id: airmeet.id, name: "Airmeet 3" }, - {venue_id: airmeet.id, name: "Airmeet 4" }, - {venue_id: airmeet.id, name: "Stream 1" }, - {venue_id: airmeet.id, name: "Stream 2" }, - {venue_id: airmeet.id, name: "Stream 3" } + {venue_id: airmeet.id, name: "Airmeet 4" } + # {venue_id: airmeet.id, name: "Stream 1" }, + # {venue_id: airmeet.id, name: "Stream 2" }, + # {venue_id: airmeet.id, name: "Stream 3" } ] ) end