On 11/15/05, Laurent Rahuel <[EMAIL PROTECTED]> wrote:
> Since the beginning, one of my models (folder) contains a property defined
> like this :
>
> DMI_id = meta.SlugField(db_index = True, unique = True,
> prepopulate_from=("title",))
>
> Note the uppercase DMI.
>
> My app is now crashing complaining that "folders"."DMI_id" does not exists in
> table folders. That's true because in my database table I only have a dmi_id
> field (note the lowercase dmi).

As of revision 1224, Django quotes all database table and column names
in its queries. Basically that means they're case-sensitive now.

You can fix your problem by either doing an ALTER TABLE in your
database to rename the column to "DMI_id" (note capitalization), or
changing your Python code to be "dmi_id".

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to