Guest User

Untitled

a guest
Feb 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. SET statement_timeout = 0;
  2. SET lock_timeout = 0;
  3. SET idle_in_transaction_session_timeout = 0;
  4. SET client_encoding = 'UTF8';
  5. SET standard_conforming_strings = on;
  6. SET check_function_bodies = false;
  7. SET client_min_messages = warning;
  8. SET row_security = off;
  9.  
  10. SET search_path = public, pg_catalog;
  11.  
  12. SET default_tablespace = '';
  13.  
  14. SET default_with_oids = false;
  15.  
  16. --
  17. -- Name: video; Type: TABLE; Schema: public; Owner: verbetes
  18. --
  19.  
  20. CREATE TABLE video (
  21. id integer DEFAULT nextval('video_seq'::regclass) NOT NULL,
  22. verid integer,
  23. tipo character varying(1),
  24. titulo character varying(120),
  25. link character varying(200),
  26. ordem smallint,
  27. arquivo bytea,
  28. tipoimg character varying(20),
  29. tamanho integer,
  30. tipovideo character varying(1)
  31. );
  32.  
  33.  
  34. ALTER TABLE video OWNER TO verbetes;
  35.  
  36. --
  37. -- Name: video video_pkey; Type: CONSTRAINT; Schema: public; Owner: verbetes
  38. --
  39.  
  40. ALTER TABLE ONLY video
  41. ADD CONSTRAINT video_pkey PRIMARY KEY (id);
Add Comment
Please, Sign In to add comment