@omnifyjp/ts 6.3.2 → 6.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +0 -0
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/types.d.ts
CHANGED
|
@@ -329,6 +329,12 @@ export interface PropertyDefinition {
|
|
|
329
329
|
readonly min?: number;
|
|
330
330
|
readonly max?: number;
|
|
331
331
|
readonly unsigned?: boolean;
|
|
332
|
+
/**
|
|
333
|
+
* AUTO_INCREMENT on this column (#175). TinyInt/Int/BigInt only, and only on
|
|
334
|
+
* the table's single-column primary key. Read by the model generator: an
|
|
335
|
+
* integer primary key WITHOUT it gets `$incrementing = false`.
|
|
336
|
+
*/
|
|
337
|
+
readonly autoIncrement?: boolean;
|
|
332
338
|
readonly precision?: number;
|
|
333
339
|
readonly scale?: number;
|
|
334
340
|
readonly pattern?: string;
|