Add manual accessors to fix weird accessor issues on linux
This commit is contained in:
parent
e718ef491d
commit
e7bcc0e863
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
(mito:deftable category-split ()
|
(mito:deftable category-split ()
|
||||||
((name :col-type (:varchar 128))
|
((name :col-type (:varchar 128))
|
||||||
(category :col-type category))
|
(category :col-type category :accessor category-split-category))
|
||||||
(:record-timestamps nil)
|
(:record-timestamps nil)
|
||||||
(:conc-name category-split-))
|
(:conc-name category-split-))
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
(mito:deftable run ()
|
(mito:deftable run ()
|
||||||
((category :col-type category))
|
((category :col-type category :accessor run-category))
|
||||||
(:record-timestamps nil)
|
(:record-timestamps nil)
|
||||||
(:conc-name run-))
|
(:conc-name run-))
|
||||||
|
|
||||||
(mito:deftable run-split ()
|
(mito:deftable run-split ()
|
||||||
((run :col-type run)
|
((run :col-type run :accessor run-split-run)
|
||||||
(category-split :col-type category-split)
|
(category-split :col-type category-split :accessor run-split-category-split)
|
||||||
(start-timestamp :col-type (or :bigint :null))
|
(start-timestamp :col-type (or :bigint :null))
|
||||||
(end-timestamp :col-type (or :bigint :null)))
|
(end-timestamp :col-type (or :bigint :null)))
|
||||||
(:record-timestamps nil)
|
(:record-timestamps nil)
|
||||||
|
Loading…
Reference in New Issue
Block a user