﻿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
27892	"Add a way to specify ""independent"" migrations"	ChillarAnand	ChillarAnand	"Currently django uses MigrationGraph and decides the order of migrations before applying them. When writing migrations manually,  users should specify `dependencies` or `run_before` for a migration so that django can decide when to apply it. 

This becomes a problem with independent migrations like this 

{{{
from django.contrib.postgres.operations import UnaccentExtension
from django.db import migrations

class Migration(migrations.Migration):
    operations = [
        UnaccentExtension(),
    ]
}}}

Is it possible to have `independent` field on `Migration` class, so that these migrations will be applied first then django can resume with migrations as usual."	New feature	closed	Migrations	dev	Normal	wontfix			Unreviewed	0	0	0	0	0	0
