mirror of https://github.com/Fabio286/antares.git
feat(SQLite): added support to INTEGER UNSIGNED
This commit is contained in:
parent
e8447e5655
commit
e7e491340a
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue