﻿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
15586	Fields with missing columns populated when querying on PostgreSQL	Sebastian Żurek	nobody	"With PostgreSQL as backend, when I use CharField field and name it ""name"", i.e.:

{{{
#!python
class MyModel(models.Model):
   name = models.CharField(max_length=255, ....)
}}}

I can reference to a 'name' field even though the appropriate db column is missing... (I forgot to create it 
manually that's how I've noticed that strange issue)

The issue went out when I updated the model (no 'name' field before), I did not create a DB column, but that did not
stop Django from filling the field with a value! On .save() everything is OK and expected DatabseError 
exception is raised by psycopg2.

The value stored in the field looks like a tuple, namely its: '(A, B, C)' where A-C are integers.
"	Bug	closed	Documentation	1.2	Normal	wontfix	postgresql	lrekucki@… botondus@…	Accepted	0	0	0	0	0	0
