I am using this lib for developing a defi application. When I run python3 manage.py migrate django_ethereum_events, I always get error messages like
Traceback (most recent call last):
File "/Library/Python/3.8/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/Library/Python/3.8/site-packages/django/db/backends/sqlite3/base.py", line 423, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such table: django_ethereum_events_monitoredevent
I also tried to run python3 manage.py makemigrations or rm the db.sqlite3 file, but it does not work either. I wonder if anyone has seen such issue before.
I am using this lib for developing a defi application. When I run
python3 manage.py migrate django_ethereum_events
, I always get error messages likeI also tried to run
python3 manage.py makemigrations
or rm thedb.sqlite3
file, but it does not work either. I wonder if anyone has seen such issue before.