代码拉取完成,页面将自动刷新
-- ----------------------------
-- Table structure for "Events"
-- ----------------------------
CREATE TABLE public."Events" (
"SourceId" uuid NOT NULL,
"Version" integer NOT NULL,
"Timestamp" timestamp with time zone NOT NULL,
"Type" text COLLATE pg_catalog."default" NOT NULL,
"Data" text COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT "Events_pkey" PRIMARY KEY ("SourceId", "Version")
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public."Events"
OWNER to postgres;
-- ----------------------------
-- Table structure for "Snapshots"
-- ----------------------------
CREATE TABLE public."Snapshots" (
"SourceId" uuid NOT NULL,
"Version" integer NOT NULL,
"Timestamp" timestamp with time zone NOT NULL,
"Type" text COLLATE pg_catalog."default" NOT NULL,
"Data" text COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT "Snapshots_pkey" PRIMARY KEY ("SourceId", "Version")
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public."Snapshots"
OWNER to postgres;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。