Nikita Logachev
Nikita Logachev
If the model is brand new, hasn't been created yet (`not model.is_created() == True`), then trying to access a property on the model like `if not user.picture: ...` will result...
**Describe the feature as you'd like to see it** Implement the unimplemented methods in https://github.com/MasoniteFramework/orm/blob/2.0/src/masoniteorm/relationships/MorphMany.py#L137-L150 **What do we currently have to do now?** Manually manage the polymorphic model lifecycles.
**Describe the bug** ```python foo = Foo.create({...}) foo.some_morph_many_relation # AttributeError: class model 'Foo' has no attribute some_morph_many_relation # but: foo = foo.fresh() # after create foo.some_morph_many_relation # works fine ```...