﻿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
25866	Django migrations not picking up max_length change on FileField	Gerben Morsink	nobody	"I have subclassed a FileField (call it S3storage) which first had no max_length

Now I changed max_length to 1000. Then running ./manage.py makemigrations it does not seems to be picked up.

The only thing I did was:
{{{
class S3FileField(models.FileField):
    def __init__(self, *args, **kwargs):
        super(S3PrivateFileField, self).__init__(*args, **kwargs)
        self.storage.default_acl = ""private""
}}}



"	Bug	new	Database layer (models, ORM)	1.7	Normal				Unreviewed	0	0	0	0	1	0
