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 c6e3374 commit e387aaaCopy full SHA for e387aaa
src/utilities/isStringType.js
@@ -3,7 +3,7 @@
3
/**
4
* @see https://www.postgresql.org/docs/current/static/datatype-numeric.html
5
*/
6
-const characterTypeRule = /^(?:text|character|coordinates)(\s|$)/;
+const characterTypeRule = /^(?:text|character|coordinates|uuid)(\s|$)/;
7
8
export default (databaseTypeName: string): boolean => {
9
return characterTypeRule.test(databaseTypeName);
0 commit comments