#insert venue
      a_venue = Venue.new(venue)
      a_venue.save

      #later add if logic once feeds supply the section names associated with each ticket
      #insert section
      a_section = Section.new( :name => 'normal', :venue_id => a_venue.id)
      a_section.save
      
      a_ext_db = ExtDb.new(:name => event[:supplier])
      a_ext_db.save
      
      #insert venue_ext_db
      a_venue_ext_db = VenueExtDb.new( :venue_id => a_venue.id, :ext_db_id => a_ext_db.id, :ext_venue_id => event[:supplier])
      a_venue_ext_db.save