Re: default values within postgres as defined in the model

2007-10-03 Thread Txus Sanchez
Hi again, I answer myself > http://code.google.com/p/django-check-constraints/ > > But unlucky (nothing to download). What happened? Did it finished? > http://code.google.com/p/google-summer-of-code-2007-django/downloads/list Here it is. BTW, are you going to include in the django svn version?

Re: default values within postgres as defined in the model

2007-10-03 Thread Txus Sanchez
Hi all, Here a new Django user (shortly I hope developer). Congratulations for the framework! > There is a Google Summer of Code project going on at the moment for > Django which is designed to allow for adding database constraints. You > might want to have a look at that (search for django-chec

Re: default values within postgres as defined in the model

2007-08-15 Thread Malcolm Tredinnick
On Wed, 2007-08-15 at 13:37 -0700, hiddenhippo wrote: > Recently new to the Django world and having a slight issue with > default values as defined within my django model. take the following, > which has been stripped, for clarity purposes. > > class test(models.Model): > language_code = mod

default values within postgres as defined in the model

2007-08-15 Thread hiddenhippo
Recently new to the Django world and having a slight issue with default values as defined within my django model. take the following, which has been stripped, for clarity purposes. class test(models.Model): language_code = models.CharField(default="en-gb",maxlength=10) when i run the sycnd