Ryan Vinzent
Ryan Vinzent
## Checklist - [ ] Raised initially as discussion #... - [x] This cannot be dealt with as a third party library. (We prefer new functionality to be [in the...
The `Versions` table in the [README](https://github.com/lensesio/fast-data-dev#versions) doesn't contain the latest versions of the [image](https://hub.docker.com/r/lensesio/fast-data-dev/tags?page=1&ordering=last_updated). Please update with the latest information as the table is very useful 🙂
It looks like `mixer` completely ignores any registered factories when default values are defined on the model ### Steps to Reproduce ```python class MyModel(models.Model): text = models.TextField(default="default") mixer.register(MyModel, text="non-default") assert...
In native postgres, I can create stand-alone `SEQUENCE` objects that are sometimes useful outside of a primary key context. It would be nice if there was a `Sequence` class similar...
I have an insert query where I would like to have the database generate some field using a sequence. At the moment, Django does not return the generated field from...
### Steps to Reproduce ``` model_schema = ModelSchema.objects.create(name="SimpleModel") related_model_schema = ModelSchema.objects.create(name="RelatedModel") FieldSchema.objects.create( name="related", model_schema=model_schema, class_name="django.db.models.ForeignKey", kwargs={ "to": another_model_schema.model_name, "on_delete": models.CASCADE, "related_name": "parent_objects", }, ) model = model_schema.as_model() related_model = related_model_schema.as_model()...
Follow up from #55 A check similar to vanilla Django should be performed to validate the table name constraints of the database platform. [Source](https://github.com/django/django/blob/main/django/db/models/options.py#L228-L232) cc @mattiagiupponi
Started using `poetry` at work and it's great. I'd like to use it for dependency management here too.
Github actions is pretty cool, and obviously integrates well with Github. We should use it instead of `Travis CI`
The wiki is not sufficient for documentation across multiple versions and the docs for the newer API should be published to readthedocs.io