Expand description
Model and field definitions parsed from the CLI (name:String email:String ...).
Structs§
- Field
- A single field of a model:
name:Type. - Model
Spec - A model: a name plus its fields and relationships, as produced by
gize make crud Name f:T author:belongs_to:users .... - Relation
- A
belongs_torelationship declared on a model (ADR-014): a foreign key from this model totarget’s primary key.fieldis the local name (author), which yields the FK columnauthor_id. Serialized under[[module.belongs_to]]ingize.toml.
Enums§
- Field
Type - The set of scalar field types Gize understands in the MVP.