This commit is contained in:
Paul Trowbridge 2018-01-26 17:21:58 -05:00
parent d001fc343a
commit b0db7d06a9

View File

@ -1,8 +1,8 @@
CREATE TABLE mast.node
(
id bigint PRIMARY KEY IDENTITY GENERATED BY DEFAULT
id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY
,nam text
,sch type
,sch text
,doc jsonb
)