You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
707 B
24 lines
707 B
2 years ago
|
-- ----------------------------
|
||
|
-- Table structure for vacate_remark
|
||
|
-- ----------------------------
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- 创建 vacate_remark 表自增序列
|
||
|
-- ----------------------------
|
||
|
CREATE SEQUENCE "public"."vacate_remark_id_seq"
|
||
|
INCREMENT 1
|
||
|
MINVALUE 1
|
||
|
MAXVALUE 9223372036854775807
|
||
|
START 1
|
||
|
CACHE 1;
|
||
|
|
||
|
DROP TABLE IF EXISTS "public"."vacate_remark";
|
||
|
CREATE TABLE "public"."vacate_remark" (
|
||
|
"id" int4 NOT NULL DEFAULT nextval('vacate_remark_id_seq'::regclass),
|
||
|
"pep_user_id" int4 NOT NULL,
|
||
|
"remark" text COLLATE "pg_catalog"."default"
|
||
|
)
|
||
|
;
|
||
|
COMMENT ON COLUMN "public"."vacate_remark"."pep_user_id" IS 'pep用户id';
|
||
|
COMMENT ON COLUMN "public"."vacate_remark"."remark" IS '备注';
|