We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375fcb0 commit dbf2f7aCopy full SHA for dbf2f7a
src/Database/Database.php
@@ -251,8 +251,7 @@ class Database
251
],
252
[
253
'$id' => '$tenant',
254
- 'type' => self::VAR_INTEGER,
255
- //'type' => self::VAR_ID, // Inconsistency with other VAR_ID since this is an INT
+ 'type' => self::VAR_ID,
256
'size' => 0,
257
'required' => false,
258
'default' => null,
src/Database/Validator/Structure.php
@@ -52,11 +52,11 @@ class Structure extends Validator
52
53
54
55
- 'type' => Database::VAR_INTEGER, // ? VAR_ID
56
- 'size' => 8,
+ 'type' => Database::VAR_ID,
+ 'size' => 0,
57
58
59
- 'signed' => false,
+ 'signed' => true,
60
'array' => false,
61
'filters' => [],
62
0 commit comments