diff --git a/lib/adodb/datadict/datadict-generic.inc.php b/lib/adodb/datadict/datadict-generic.inc.php index fc5ba768..45a660f9 100644 --- a/lib/adodb/datadict/datadict-generic.inc.php +++ b/lib/adodb/datadict/datadict-generic.inc.php @@ -35,7 +35,8 @@ class ADODB2_generic extends ADODB_DataDict { case 'T': return 'DATE'; case 'L': return 'DECIMAL(1)'; - case 'I': return 'DECIMAL(10)'; + // case 'I': return 'DECIMAL(10)'; + case 'I': return 'INTEGER'; // Hack for shimmie: SQLite auto-increment requires the word "integer" case 'I1': return 'DECIMAL(3)'; case 'I2': return 'DECIMAL(5)'; case 'I4': return 'DECIMAL(10)'; @@ -122,4 +123,4 @@ function ActualType($meta) } } */ -?> \ No newline at end of file +?>