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.
1 parent 397d225 commit 11d3ffbCopy full SHA for 11d3ffb
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