﻿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
23302	Give a name to a migration from command line option	Raffaele Salmaso	nobody	"With south, I can (or must) give a (possibly meaningful) name to a migration step

{{{
$ ./manage.py schemamigration --auto add_a_flag
}}}

{{{
$ ./manage.py schemamigration --empty my_schema_change_name
}}}

With django migrations it is impossible, it defaults to some ""random"" text

{{{
$ ./manage.py makemigrations myapp --empty pippo
App 'pippo' could not be found. Is it in INSTALLED_APPS?
}}}

you must change after creation
{{{
$ ./manage.py makemigrations myapp --empty
$ cd $APP/migrations
$ mv XXXX_23833_93333.py XXXX_migration.py
}}}
"	New feature	closed	Migrations	dev	Normal	fixed		raffaele.salmaso@…	Ready for checkin	1	0	0	0	0	0
