prestige r
2008-06-15 21:22:09 UTC
--
-- PostgreSQL database dump
--
SET client_encoding = 'LATIN1';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
--
COMMENT ON SCHEMA public IS 'Standard public schema';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: club; Type: TABLE; Schema: public; Owner: cancel; Tablespace:
--
CREATE TABLE club (
club_id serial NOT NULL,
name character varying(70) NOT NULL,
region integer NOT NULL
);
Anybody know if there are other ways to do this? Cheers Very Much.