On 3/24/06, sam <[EMAIL PROTECTED]> wrote: > I'd like to change the naming convention when creation Django models. > For instance I don't want to append "_id" to the foreign key field > name. It is apparently possible to change this behavior.
Hi Sam, You can't change the naming convention on a global level, but you can manually override the name of the database column by specifying "db_column" in the field parameters. For example: foo = meta.ForeignKey(Foo, db_column='foo') The docs are here: http://www.djangoproject.com/documentation/model_api/#general-field-options Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---