T_FINISH

来源:互联网 发布:投资网络电影赚钱吗 编辑:程序博客网 时间:2024/06/05 05:10
-- Table: public."T_FINISH"


-- DROP TABLE public."T_FINISH";


CREATE TABLE public."T_FINISH"
(
    "CODE" character(5) COLLATE pg_catalog."default" NOT NULL,
    "TYPE_PC" integer NOT NULL,
    "STAT" integer NOT NULL,
    "FIN_AT" timestamp with time zone,
    CONSTRAINT "T_FINISH_pkey" PRIMARY KEY ("CODE")
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;


ALTER TABLE public."T_FINISH"
    OWNER to postgres;