We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 397d225 + 11d3ffb commit edb6b0aCopy full SHA for edb6b0a
src/Property.ts
@@ -52,6 +52,7 @@ export class Property extends BaseProperty {
52
if (this.column.type === Number) { type = 'number' }
53
if (this.column.type === String) { type = 'string' }
54
if (this.column.type === Date) { type = 'datetime' }
55
+ if (this.column.type === Boolean) { type = 'boolean' }
56
}
57
58
if (this.reference()) { type = 'reference' }
0 commit comments