I'm attempting to add an attribute to an existing datomic schema, with the new attribute being
{:db/id #db/id[:db.part/db]
:db/ident :user-deets/enriched
:db/valueType :db.type/boolean
:db/cardinality :db.cardinality/one
:db.install/_attribute :db.part/db}
and when I try to submit it as a transaction (as described at http://docs.datomic.com/schema.html) with the following
(datomic/query '[{:db/id #db/id[:db.part/db]
:db/ident :user-deets/enriched
:db/valueType :db.type/boolean
:db/cardinality :db.cardinality/one
:db.install/_attribute :db.part/db}] (database/get-db))
I get an error that I don't have a :find clause in my query.
How should I be submitting this transaction in order to add the attribute to my datomic databases schema?