﻿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
31019	The database backend specific checks could be bypassed when using multiple databases.	Shipeng Feng	nobody	"Here is the settings:

{{{
#!python
DATABASES = {
    'default': {},
    'users': {
        'NAME': 'user_data',
        'ENGINE': 'django.db.backends.mysql',
        'USER': 'mysql_user',
        'PASSWORD': 'superS3cret'
    },
}
}}}

Here is the related source code: https://github.com/django/django/blob/f97a6123c07de5099fdf8b7d00ef7d20ed354e07/django/db/models/fields/__init__.py#L340

We only run checks for the first db, and the behavior of the first db is undetermined (the first entry of a dictionary),
if the first db is `default`, then we would only run dummy backend checks, mysql checks are bypassed.
"	Bug	closed	Core (System checks)	dev	Normal	invalid			Unreviewed	0	0	0	0	0	0
