- 🇺🇸United States m.stenta
Talked with @paul121 about this today, and we're starting to refine some decisions... nothing in stone yet but wanted to capture it here:
"What should the entity type be called"?
We're leaning towards
plan_record
for entity type name. It is short and sweet, and implies a relationship between a "plan" and a "record". And then bundles could be created of that for specific plan<->record relationship types."Should the plan reference the
plan_record
entities via an entity reference field on the plan? Or should theplan_record
reference the plan in an entity reference field on itself?"The nice thing about the reference being stored on the plan is it can be done by a specific field, which can give the connection more meaning. For example, maybe a plan references two kinds of assets, and wants those references to be maintained in two separate fields.
This also relates to the next question...
"Should it have any base fields? Or just bundle fields?"
Still TBD. Might be good to include some basic hidden metadata base fields like
created
,changed
, uid, etc."Should they be revisionable?"
This is a similar decision we went through for
quantity
entitites. It means that we need to use anentity_reference_revisions
field instead of anentity_reference
field. - 🇺🇸United States m.stenta
Update: I opened a pull request with a proposed approach to this...
https://github.com/farmOS/farmOS/pull/781
"Should the plan reference the plan_record entities via an entity reference field on the plan? Or should the plan_record reference the plan in an entity reference field on itself?"
Worth noting... I went with a
plan
reference field on theplan_record
entity type instead of a reference field onplan
entity, for reasons described in the PR.The nice thing about the reference being stored on the plan is it can be done by a specific field, which can give the connection more meaning. For example, maybe a plan references two kinds of assets, and wants those references to be maintained in two separate fields.
After giving it more thought, the same "meaning" can be achieved with multiple
plan_record
types, and the complexity of managing field references on theplan
itself seemed unnecessarily burdensome. - Status changed to Fixed
about 1 year ago 12:57am 3 February 2024 - 🇺🇸United States m.stenta
https://github.com/farmOS/farmOS/pull/781 has been merged.
Automatically closed - issue fixed for 2 weeks with no activity.