9 lines
301 B
MySQL
9 lines
301 B
MySQL
|
--------------------------account master---------------------------------------------
|
||
|
|
||
|
--the account master should be dynamically created
|
||
|
CREATE TABLE evt.acct (
|
||
|
acct text PRIMARY KEY
|
||
|
,prop jsonb
|
||
|
);
|
||
|
COMMENT ON COLUMN evt.acct.acct IS 'account';
|
||
|
COMMENT ON COLUMN evt.acct.prop IS 'properties';
|