﻿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
21020	Allow Migrations to use parent classes migration profile	anonymous	nobody	"I'm unsure as to how Django is implementing South internally, but one thing that has always caused me pain is when I need to create myself a SubClass of Charfield and suddenly require to redefine all of the south migration profile. It would be better to be able to point to your parent class for the migration profile.

Example of desired ability:


{{{
class CharField2(CharField):
    
    .........
    .........

    class Meta:
        migration = super(CharField, self)._meta.migration
}}}
 "	New feature	closed	Database layer (models, ORM)	dev	Normal	invalid			Unreviewed	0	0	0	0	0	0
