[sqlalchemy] SQLalchemy Date type creates Datetime column

2011-01-12 Thread bool
I am using sqlalchemy 0.5 with mssql server 2008. I see that when I want to create a 'Date' type column, sql alchemy creates a datetime column instead? Is this a bug in sql alchemy? -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this

Re: [sqlalchemy] SQLalchemy Date type creates Datetime column

2011-01-12 Thread Michael Bayer
SQL server had no Date type previous to 2008.Upgrade to 0.6 where the behavior of Date/Datetime has been more carefully refined on SQL server to accurately detect the version of SQL server in use. On Jan 12, 2011, at 6:14 AM, bool wrote: I am using sqlalchemy 0.5 with mssql server 2008.