We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9f01a commit 76a23acCopy full SHA for 76a23ac
1 file changed
lib_sql_parser.php
@@ -602,6 +602,11 @@ function parse_field($tokens){
602
}
603
604
# [AUTO_INCREMENT]
605
+ if (StrToUpper($tokens[0]) == 'AUTO_INCREMENT'){
606
+ $f['auto_increment'] = true;
607
+ array_shift($tokens);
608
+ }
609
+
610
# [UNIQUE [KEY] | [PRIMARY] KEY]
611
# [COMMENT 'string']
612
# [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]
0 commit comments