You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Collection of sub-issues working towards support of mutli-column fields
Vision of feature
Structs:
/// Common timestamps to track access to a model#[derive(FieldType)]pubstructTimestamps{pubcreated:OffsetDateTime,pubupdated:OffsetDateTime,pubread:OffsetDateTime,pubdeleted:Option<OffsetDateTime>,}#[derive(Model)]pubstructSomeObject{
...
pubtimestamps:Timestamps,}
Collection of sub-issues working towards support of mutli-column fields
Vision of feature
(Basicly embed all fields into the parent model)
(Embed all variants wrapped in
Option
into the parent model and "enforce" only one to be set)The text was updated successfully, but these errors were encountered: