﻿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
32925	TextField default text not populate to MySQL data when migrate	Edgenius	nobody	"When adding 2 new fields, one is CharField and another is TextField, they both nullable with default value: 

{{{
subject2 = models.CharField(max_length=512, blank=True, null=True, default=""Some text"")
body2 = models.TextField(blank=True, null=True, default=""Some text"")
}}}

After migration in MySQL 8.0.19,  for existing data,  new CharField column populate that default ""Some text"" value. However,  TextField is just null.  This inconsistent behaviour is very confusing. "	Bug	new	Database layer (models, ORM)	3.2	Normal				Unreviewed	0	0	0	0	0	0
