﻿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
2959	Capital letters in app name break syncdb	Yary	Adrian Holovaty	"create an app as in tutorial 1, but capitalize Polls:

{{{
python manage.py startapp Polls

>cd Polls; cat > models.py
from django.db import models

class Poll(models.Model):
    question = models.CharField(maxlength=200)
    pub_date = models.DateTimeField('date published')

^D

>cd ..

(add 'mysite.Polls' to settings.py INSTALLED_APPS)

>manage.py syncdb
Creating table Polls_poll
Adding permission 'poll | Can add poll'
Adding permission 'poll | Can change poll'
Adding permission 'poll | Can delete poll'

>manage.py syncdb
Creating table Polls_poll
Traceback ...
    raise errorclass, errorvalue
_mysql_exceptions.OperationalError: (1050, ""Table 'polls_poll' already exists"")

}}}
"	defect	closed	Core (Other)	0.95	normal	invalid			Unreviewed	0	0	0	0		
