On 11/4/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Why am I not getting a TIMESTAMP type instead of datetime.  Preferably
> I would like a timestamp with timezone.

As somebody who doesn't use SQLite, I must ask: What advantage does
timestamp offer over datetime? I can't find any mention of it on
http://www.sqlite.org/datatype3.html .

> Also choices are not generating a check statement like:
> status VARCHAR(8) CHECK (status in ('active', 'inactive')),

The choices are implemented at the Python level, not at the database
level. Feel free to add the CHECK to your SQL manually.

django-admin.py sqlall myapp > myapp.sql
vim myapp.sql             # add the CHECK
cat myapp.sql | sqlite  # pipe the SQL into SQLite, however that's done

Adrian

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

Reply via email to