summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Zara <ondrej.zara@gmail.com>2012-06-25 13:46:45 +0200
committerOndrej Zara <ondrej.zara@gmail.com>2012-06-25 13:46:45 +0200
commitb5c809c797c25739f5a93a433ec225725b96365d (patch)
treeae599904126c566c5830d525f8357a4595220272
parentc3b18bde7cef4aeb3927bb87a6c3cbd2acd39fd4 (diff)
downloadwwwsqldesigner-b5c809c797c25739f5a93a433ec225725b96365d.zip
wwwsqldesigner-b5c809c797c25739f5a93a433ec225725b96365d.tar.gz
wwwsqldesigner-b5c809c797c25739f5a93a433ec225725b96365d.tar.bz2
issue 155, more int types for mysql - thanks to divinity76
-rw-r--r--db/mysql/datatypes.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/db/mysql/datatypes.xml b/db/mysql/datatypes.xml
index fe11363..129ac33 100644
--- a/db/mysql/datatypes.xml
+++ b/db/mysql/datatypes.xml
@@ -1,7 +1,12 @@
<?xml version="1.0"?>
<datatypes db="mysql">
<group label="Numeric" color="rgb(238,238,170)">
- <type label="Integer" length="0" sql="INTEGER" re="INT" quote="" />
+ <type label="TINYINT" length="0" sql="TINYINT" quote="" />
+ <type label="SMALLINT" length="0" sql="SMALLINT" quote="" />
+ <type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote="" />
+ <type label="INT" length="0" sql="INT" quote="" />
+ <type label="Integer" length="0" sql="INTEGER" quote="" />
+ <type label="BIGINT" length="0" sql="BIGINT" quote="" />
<type label="Decimal" length="1" sql="DECIMAL" re="DEC" quote="" />
<type label="Single precision" length="0" sql="FLOAT" quote="" />
<type label="Double precision" length="0" sql="DOUBLE" re="DOUBLE" quote="" />