We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db81cbc commit 35cce79Copy full SHA for 35cce79
src/types.ts
@@ -18,7 +18,7 @@ export interface Property {
18
pattern?: string;
19
readOnly?: boolean;
20
unique?: boolean;
21
- type: "array" | "boolean" | "date" | "integer" | "number" | "object" | "string";
+ type: "array" | "boolean" | "date" | "integer" | "json" | "number" | "object" | "string";
22
writeOnly?: boolean;
23
}
24
@@ -28,9 +28,9 @@ export interface Column extends Property {
28
dateOn?: "delete" | "insert" | "update";
29
constraint?: string;
30
format?: string;
31
+ fullText?: boolean;
32
index?: string[];
33
primaryKey?: boolean;
- required?: boolean;
34
35
36
// Extra properties such as `array`, 'subType' and 'unique can only be defined externally
0 commit comments