]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
added reflected 'tinyint' type to MS-SQL [ticket:263]
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 Aug 2006 23:39:11 +0000 (23:39 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 Aug 2006 23:39:11 +0000 (23:39 +0000)
CHANGES
lib/sqlalchemy/databases/mssql.py

diff --git a/CHANGES b/CHANGES
index 8d49e4d8441546b1ae0b1e8e6c995c436deb0b1e..ddc0a6f0c1053c2f55ea381f9c96ebaf5a777528 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -18,6 +18,7 @@ reflection.
 overflow counter should only be decremented if the connection actually
 succeeded.  added a test script to attempt testing this.
 - fixed mysql reflection of default values to be PassiveDefault
+- added reflected 'tinyint' type to MS-SQL [ticket:263]
 
 0.2.6
 - big overhaul to schema to allow truly composite primary and foreign
index 6613009fc1ab3618b803c6ef6e36e552e177ed5a..38699a8a52ac1b12b550b781346a88087be2ffe6 100644 (file)
@@ -174,6 +174,7 @@ colspecs = {
 ischema_names = {
     'int' : MSInteger,
     'smallint' : MSSmallInteger,
+    'tinyint' : MSSmallInteger,
     'varchar' : MSString,
     'char' : MSChar,
     'text' : MSText,