mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
chore: add boolean type for postgres (#163)
* chore: add boolean type for postgres * chore: remove bool
This commit is contained in:
parent
a66abbc251
commit
5b404e2b2e
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ export const getType = (
|
|||
case 'timestamp':
|
||||
case 'timestamptz':
|
||||
return 'number';
|
||||
case 'bool':
|
||||
case 'boolean': // https://www.postgresql.org/docs/14/datatype-boolean.html
|
||||
return 'boolean';
|
||||
case 'json':
|
||||
case 'jsonb':
|
||||
|
|
Loading…
Add table
Reference in a new issue