django.db.utils.OperationalError: no such table: dynamic_models_modelfieldschema
See original GitHub issueHi, I have installed django-dynamic-models and I’m following the documentation.
When I create a new object with the command :
car_schema = ModelSchema.objects.create(name='car')
The command return an error :
no such table: dynamic_models_modelfieldschema
Have you ever encountered this error ?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Django: OperationalError No Such Table - python
I've run python manage.py syncdb (added result to post). I was under the impression, however that using south via migrate eliminated the need...
Read more >django.db.utils.OperationalError: no such table: webapp_cart
django.db.utils.OperationalError: no such table: webapp_cart i got this error, webapp_cart is a model i made. But later i realise that i ...
Read more >django-dynamic-model 0.1.0 - PyPI
Dynamic Django models allow users to define, edit, and populate their own database tables and apply runtime schema changes to the database.
Read more >Why am I getting "django.db.utils.OperationalError: no such table
from django.db import models class Performer(models.Model): name = models.CharField(max_length=255) def __str__(self): return self.name ...
Read more >django.db.utils.OperationalError: no such table abc
The table tableStatus exists in my models.py. Any ideas what I can do to fix this problem?
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@yvsssantosh thanks a loooot, I was looking for this problem for a long time and then I found you
Hi, I get the same error as well, the thing is, when you perform makemigrations make sure that you got a migration for django-dynamic-models. If it showed
No Changes Detected
then try the command