updates 33.1 8

This commit is contained in:
2026-08-10 00:32:47 -03:00
parent 9fc4c23143
commit dfb1991ae3
10 changed files with 663 additions and 8 deletions

View File

@@ -27,6 +27,11 @@ class FieldDefinition:
type_hint: Any
default: Any = dc.MISSING
optional: bool = False
# Optional DB/schema metadata (set by introspection extractors; ignored by
# loaders/generators that don't need it).
primary_key: bool = False
foreign_key: Optional[str] = None # target model name
unique: bool = False
@dataclass