From abf2895a7826cfcbe4d43daf0f607bf7cc975097 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 2 Jan 2006 04:06:57 +0000 Subject: changed mysql TIMESTAMP->DATETIME fixed up date unit test RowProxy __iter__ properly routes columns through type processing --- lib/sqlalchemy/databases/mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/databases/mysql.py') diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py index 4e43f3673..21dbc2c17 100644 --- a/lib/sqlalchemy/databases/mysql.py +++ b/lib/sqlalchemy/databases/mysql.py @@ -30,7 +30,7 @@ class MSInteger(sqltypes.Integer): return "INTEGER" class MSDateTime(sqltypes.DateTime): def get_col_spec(self): - return "TIMESTAMP" + return "DATETIME" class MSText(sqltypes.TEXT): def get_col_spec(self): return "TEXT" -- cgit v1.2.1