From 7038ec944d19f2da04b11f1223cea2d1c304c638 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Tue, 21 Mar 2023 19:30:25 -0700 Subject: [PATCH] Added schema resources. --- resources/cloud-migration-schema.edn | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 resources/cloud-migration-schema.edn diff --git a/resources/cloud-migration-schema.edn b/resources/cloud-migration-schema.edn new file mode 100644 index 00000000..565280fa --- /dev/null +++ b/resources/cloud-migration-schema.edn @@ -0,0 +1,13 @@ +[{:db/valueType :db.type/double, + :db/cardinality :db.cardinality/one, + :db/noHistory true + :db/doc "The cached running balance for the account this line item is for", + :db/ident :journal-entry-line/running-balance, + } + {:db/valueType :db.type/boolean, + :db/cardinality :db.cardinality/one, + :db/noHistory true + :db/doc "Whether or not this journal entry line is dirty and needs to recalculate balances", + :db/ident :journal-entry-line/dirty, + } + ]