django-dynamic-model icon indicating copy to clipboard operation
django-dynamic-model copied to clipboard

Dynamic models for Django

Results 4 django-dynamic-model issues
Sort by recently updated
recently updated
newest added

unable to pickle schema instance because of prefetched fields

Maybe it would be clearer and cleaner if field name parameter is not named 'field' in schema.add_field usage example: ``` python class MyModel(DynamicModel): name = models.CharField(max_length=100) # regular field schema.add_field(name='field',...

enhancement

Every time an instance of the model is created, another query is fired up to fetch the schema. If we're getting multiple models (very likely), it's going to fire off...

bug