feat(SQLite): added support to INTEGER UNSIGNED

This commit is contained in:
Fabio Di Stasio 2023-02-04 11:38:30 +01:00
parent e8447e5655
commit e7e491340a
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,13 @@ export default [
unsigned: true,
zerofill: true
},
{
name: 'INTEGER UNSIGNED',
length: true,
collation: false,
unsigned: true,
zerofill: true
},
{
name: 'BIGINT',
length: true,

View File

@ -38,6 +38,7 @@
"bigint": $number-color,
"newdecimal": $number-color,
"integer": $number-color,
"integer_unsigned": $number-color,
"numeric": $number-color,
"smallserial": $number-color,
"serial": $number-color,