django-dynamic-model
django-dynamic-model copied to clipboard
Dynamic models for Django
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',...
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...