1π
β
This is related to this issue in Django: https://code.djangoproject.com/ticket/29182.
It is caused by a new behavior introduced in sqlite 3.26.
Django has patched it in latest 2.0 and 2.1, but mezzanine does not support Django 2 yet.
The easiest fix is to not use sqlite β switch to postgres, mysql, etc. Alternatively, downgrade sqlite to < 3.26
π€user8588795
0π
I had the same issue in a github action and I had to tweak the ubuntu version to get the preinstalled sqlite version that would work. What fixed the issue for me was to change this line:
runs-on: ubuntu-latest
to
runs-on: ubuntu-18.04
Got the ubuntu version containing the sqlite version I needed here: https://packages.ubuntu.com/search?keywords=sqlite3.
π€obotezat
- [Answered ]-How to set already existing field as a foreign key to another table?
- [Answered ]-Get updated session data in a Django Channels' consumer
Source:stackexchange.com