﻿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
26838	Disabling migrations via DATABASE['TEST']['MIGRATE'] affects non-testing environment	Atul Varma	nobody	"Hello! I'm using 1.10b1 and I added the following to the end of my `settings.py`:

{{{
DATABASES['default']['TEST'] = {'MIGRATE': False}
}}}

This made my tests succeed without requiring me to create proper migrations for them, which was great, because it allowed me to tinker with my models without needing to generate migrations.

However, once I was done tinkering, I made a migration, which succeeded--but running `manage.py migrate` claimed there were no migrations to be applied! And `manage.py showmigrations` printed nothing, which was also odd. Once I removed the above line of code from my `settings.py`, however, both of these commands started working again.

So I might be wrong, but it ''appeared'' as though my change to `settings.py` actually disabled migrations for my whole project, rather than only disabling them for tests.

If this warrants further inspection, I can try creating a simple test case for it.
"	Bug	closed	Migrations	1.10	Normal	duplicate			Unreviewed	0	0	0	0	0	0
