1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
--
-- PostgreSQL database dump
--
-- Started on 2008-04-13 15:46:00 Paris, Madrid
SET client_encoding = 'LATIN2';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- TOC entry 1709 (class 1262 OID 17411)
-- Name: fret; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE fret WITH TEMPLATE = template0 ENCODING = 'LATIN2';
ALTER DATABASE fret OWNER TO postgres;
\connect fret
SET client_encoding = 'LATIN2';
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 1381 (class 1259 OID 17453)
-- Dependencies: 5
-- Name: localite; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE localite (
codloc character(10) NOT NULL,
libelle character(40),
codvil character(10)
);
ALTER TABLE public.localite OWNER TO postgres;
--
-- TOC entry 1707 (class 16386 OID 17477)
-- Dependencies: 1381 1381
-- Name: localite_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY localite
ADD CONSTRAINT localite_pkey PRIMARY KEY (codloc);
ALTER INDEX public.localite_pkey OWNER TO postgres;
-- Completed on 2008-04-13 15:46:01 Paris, Madrid
--
-- PostgreSQL database dump complete
-- |
Partager