﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30697	SQLite3.28 breaks django migrations.	Osher De Paz	nobody	"It seems you've fixed it for django 2+, but it's not fixed in 1.11 (which should still be supported according to your roadmap)

https://code.djangoproject.com/ticket/29182

since python 3.7.4 came out, the builtin sqlite library has been upgraded and some migrations are broken (at least on windows).

{{{
query = '\n                    SELECT REFERRING.`resourcedata_ptr_id`, REFERRING.`resourcedata_ptr_id` FROM `management_demore...n                    WHERE REFERRING.`resourcedata_ptr_id` IS NOT NULL AND REFERRED.`id` IS NULL\n                    '
params = None
    def execute(self, query, params=None):
        if params is None:
>           return Database.Cursor.execute(self, query)
E           sqlite3.OperationalError: no such table: management_resourcedata__old
.tox\py37-django1.11\lib\site-packages\django\db\backends\sqlite3\base.py:326: OperationalError
}}}
"	Bug	closed	Database layer (models, ORM)	1.11	Normal	wontfix			Unreviewed	0	0	0	0	0	0
