django-dynamic-models
django-dynamic-models copied to clipboard
Dynamic Django models allow users to define, edit, and populate their own database schema.
Issue location: /dynamic_models/models.py:254 That is: >>class ModelFieldSchema(GenericModel, GenericField): >> objects = ModelFieldSchemaManager() >> null = models.BooleanField(default=False) # issue1 >> unique = models.BooleanField(default=False) # issue2 >> max_length = models.PositiveIntegerField(null=True) Problem description:...
Github actions is pretty cool, and obviously integrates well with Github. We should use it instead of `Travis CI`
Requesting feature to support type ArrayField to allow the user to store data in an array.
I was wondering. What would be really awesome for me is to be able to use something like: ``` schema = ModelSchema.objects.db_manager(DB_NAME).create(name=instance.schema) ``` Is there anything theoretically stopping me from...
Django use BigAutoField as primary key now.
As the title says, how can I make some change and run the test?
Here is my scenario: I want to create task table for every user, since each user may add this own dynamic fields. ```python def create_task_list(request): schema = ModelSchema.objects.create(name=f"task_{request.user.id}") # create...
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.2 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...
Bumps [django](https://github.com/django/django) from 4.0.7 to 4.1.7. Commits c57ff9b [4.1.x] Bumped version for 4.1.7 release. 628b33a [4.1.x] Fixed CVE-2023-24580 -- Prevented DoS with too many uploaded files. 425c75f [4.1.x] Fixed #34318...
The wiki is not sufficient for documentation across multiple versions and the docs for the newer API should be published to readthedocs.io