-- -- PostgreSQL database dump -- SET client_encoding = 'UTF8'; SET check_function_bodies = false; SET client_min_messages = warning; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: captures; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE captures ( id serial NOT NULL, section character varying(50), title character varying(50), legend text, pargraphs text[], etape integer, wdate timestamp without time zone[], author integer[], etape_courante integer, confirm boolean ); ALTER TABLE public.captures OWNER TO postgres; -- -- Name: captures_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('captures', 'id'), 25, true); -- -- Data for Name: captures; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY captures (id, section, title, legend, pargraphs, etape, wdate, author, etape_courante, confirm) FROM stdin; \. -- -- Name: captures_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: -- ALTER TABLE ONLY captures ADD CONSTRAINT captures_pkey PRIMARY KEY (id); -- -- PostgreSQL database dump complete --