﻿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
32962	Consolidate string concatenations in BaseDatabaseSchemaEditor.column_sql()	Chris Jerdonek	Chris Jerdonek	Currently, [https://github.com/django/django/blob/20226fcd461670334646f78a0c4d133e439b12b2/django/db/backends/base/schema.py#L209 BaseDatabaseSchemaEditor.column_sql()] builds up a `sql` string by repeated concatenations with itself. I noticed this could be combined into a single `' '.join(...)` if an iterator that yields `sql` parts is factored out. This will eliminate the need to create temporary intermediate strings and should improve readability.	Cleanup/optimization	closed	Database layer (models, ORM)	dev	Normal	fixed			Ready for checkin	1	0	0	0	0	0
