我只是尝试将我所做的模型更改迁移到django项目,而我所做的只是向模型中添加两个新列。现在我正在尝试迁移它,我在下面得到这个错误,我不知道它来自哪里或如何解决它...没有导致回溯错误的文件对我来说很熟悉。任何人都可以提供帮助。
这是错误
Map<Bar, Map<Baz, Set<Foo>>>
这是我的models.py文件
Running migrations:
Rendering model states... DONE
Applying tab.0027_auto_20170807_1753...Traceback (most recent call last):
File "C:\Users\OmarJandali\AppData\Local\Programs\Python\Python36\lib\site-packages\django\db\backends\utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "C:\Users\OmarJandali\AppData\Local\Programs\Python\Python36\lib\site-packages\django\db\backends\sqlite3\base.py", line 318, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such table: tab_notification
我添加的唯一内容是models.py文件的名字和姓氏列。