Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. -- Table: public.processtree
  2.  
  3. -- DROP TABLE public.processtree;
  4.  
  5. CREATE TABLE public.processtree
  6. (
  7. id integer NOT NULL DEFAULT nextval('processtree_id_seq'::regclass),
  8. h_id text COLLATE pg_catalog."default",
  9. s_id text COLLATE pg_catalog."default",
  10. "timestamp" timestamp with time zone,
  11. pe_id integer,
  12. pe1_id integer,
  13. u_id text COLLATE pg_catalog."default",
  14. pc_command text COLLATE pg_catalog."default",
  15. pc_args text COLLATE pg_catalog."default",
  16. u1_id text COLLATE pg_catalog."default",
  17. pc1_command text COLLATE pg_catalog."default",
  18. pc1_args text COLLATE pg_catalog."default",
  19. score double precision,
  20. suspicious boolean,
  21. comment text COLLATE pg_catalog."default",
  22. is_reviewed boolean,
  23. is_alert boolean,
  24. CONSTRAINT processtree_pkey PRIMARY KEY (id)
  25. )
  26. WITH (
  27. OIDS = FALSE
  28. )
  29. TABLESPACE pg_default;
  30.  
  31. ALTER TABLE public.processtree
  32. OWNER to marco;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement