jl/schema/tables/acct.sql

9 lines
301 B
MySQL
Raw Normal View History

2018-09-12 00:48:44 -04:00
--------------------------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';