diff --git a/src/co/gaiwan/compass/db/data.clj b/src/co/gaiwan/compass/db/data.clj index f9b45ba..bf8da30 100644 --- a/src/co/gaiwan/compass/db/data.clj +++ b/src/co/gaiwan/compass/db/data.clj @@ -8,22 +8,8 @@ (require 'java-time-literals.core) (defn locations [] - [{:location/name "Het Depot" - :db/ident :location.type/depot} - {:location/name "Hal 5 - Workshop Zone" - :db/ident :location.type/hal5} - {:location/name "Hal 5 - Presentation Zone" - :db/ident :location.type/hal5-zone-b} - {:location/name "Hal 5 - Open Zone" - :db/ident :location.type/hal5-hoc-cafe} - {:location/name "Hal 5 - Foodcourt" - :db/ident :location.type/hal5-foodcourt} - {:location/name "Hal 5 - Park" - :db/ident :location.type/hal5-park} - {:location/name "Hal 5 - Outside seating" - :db/ident :location.type/hal5-outside-seating} - {:location/name "Hal 5 - Long table" - :db/ident :location.type/hal5-long-table}]) + [{:location/name "Het Depot"} + {:location/name "Hal 5"}]) (defn session-types [] [{:session.type/name "Talk" diff --git a/src/co/gaiwan/compass/db/schema.clj b/src/co/gaiwan/compass/db/schema.clj index 0bd0008..e04a41c 100644 --- a/src/co/gaiwan/compass/db/schema.clj +++ b/src/co/gaiwan/compass/db/schema.clj @@ -61,7 +61,7 @@ [:session.type/name :string "Type of session, e.g. talk, activity"] [:session.type/color :string "CSS color or var reference used for rendering"] - [:location/name :string "Name of the location" :identity] + [:location/name :string "Name of the location"] [:oauth/state-id :uuid "State parameter passed along with the oauth flow" :identity] [:oauth/redirect-url :string "Location to redirect to after login"]