Javier Gallo ∴

Results 1 issues of Javier Gallo ∴

Property fields are not inherited by submodels: ```python class BaseFoo(ormar.Model): class Meta: abstract = True name: str = ormar.String(max_length=100) @ormar.property_field def prefixed_name(self) -> str: return "prefix_" + self.name class Foo(BaseFoo):...

bug