notes/master_data_nodes.md

16 lines
226 B
Markdown
Raw Normal View History

2018-01-26 10:34:47 -05:00
CREATE TABLE mast.node
(
2018-01-26 17:21:58 -05:00
id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY
2018-01-26 10:34:47 -05:00
,nam text
2018-01-26 17:21:58 -05:00
,sch text
2018-01-26 10:34:47 -05:00
,doc jsonb
)
CREATE TABLE acct.accm
(
id bigint PRIMARY KEY GENERATED BY DEFAULT
,nam text
,
)