Add uuid
This commit is contained in:
parent
ccf10d5690
commit
f6c64a50ab
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = ProcruSQL
|
name = ProcruSQL
|
||||||
version = 0.0.13
|
version = 0.0.14
|
||||||
author = Peter J. Holzer
|
author = Peter J. Holzer
|
||||||
author_email = hjp@hjp.at
|
author_email = hjp@hjp.at
|
||||||
description = Make a database fit its description
|
description = Make a database fit its description
|
||||||
|
|
|
@ -295,6 +295,7 @@ def parse_column_definition(ps):
|
||||||
"inet",
|
"inet",
|
||||||
"double precision", "float8", "real", "float4",
|
"double precision", "float8", "real", "float4",
|
||||||
"json", "jsonb",
|
"json", "jsonb",
|
||||||
|
"uuid",
|
||||||
r"integer\[\]", r"int\[\]", r"bigint\[\]",
|
r"integer\[\]", r"int\[\]", r"bigint\[\]",
|
||||||
),
|
),
|
||||||
key=lambda x: -len(x) # longest match first
|
key=lambda x: -len(x) # longest match first
|
||||||
|
|
Loading…
Reference in New Issue