File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ final class DataType
9
9
const TINYINT = 'TINYINT ' ;
10
10
const SMALLINT = 'SMALLINT ' ;
11
11
const INT = 'INT ' ;
12
+ const INTEGER = 'INTEGER ' ;
12
13
const BIT = 'BIT ' ;
13
14
const MEDIUMINT = 'MEDIUMINT ' ;
14
15
const BIGINT = 'BIGINT ' ;
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ private static function getDefinitionColumn(Query\MysqlColumnType $stmt) : Colum
143
143
case DataType::TINYINT :
144
144
case DataType::SMALLINT :
145
145
case DataType::INT :
146
+ case DataType::INTEGER :
146
147
case DataType::BIT :
147
148
case DataType::MEDIUMINT :
148
149
case DataType::BIGINT :
@@ -240,6 +241,7 @@ private static function getIntegerDefinitionColumn(Query\MysqlColumnType $stmt)
240
241
return new Column \SmallInt ($ unsigned , $ display_width );
241
242
242
243
case DataType::INT :
244
+ case DataType::INTEGER :
243
245
return new Column \IntColumn ($ unsigned , $ display_width );
244
246
245
247
case DataType::BIT :
You can’t perform that action at this time.
0 commit comments