Skip to content

Commit edb6b0a

Browse files
Merge pull request #6 from giuseppecutuli/master
feat: boolean field
2 parents 397d225 + 11d3ffb commit edb6b0a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Property.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export class Property extends BaseProperty {
5252
if (this.column.type === Number) { type = 'number' }
5353
if (this.column.type === String) { type = 'string' }
5454
if (this.column.type === Date) { type = 'datetime' }
55+
if (this.column.type === Boolean) { type = 'boolean' }
5556
}
5657

5758
if (this.reference()) { type = 'reference' }

0 commit comments

Comments
 (0)