Skip to content

Instantly share code, notes, and snippets.

@meineerde
Created July 14, 2010 15:12
Show Gist options
  • Select an option

  • Save meineerde/475525 to your computer and use it in GitHub Desktop.

Select an option

Save meineerde/475525 to your computer and use it in GitHub Desktop.
CREATE TABLE repositories
(
id serial NOT NULL,
project_id integer NOT NULL DEFAULT 0,
url character varying(255) NOT NULL DEFAULT ''::character varying,
"login" character varying(60) DEFAULT ''::character varying,
"password" character varying(60) DEFAULT ''::character varying,
root_url character varying(255) DEFAULT ''::character varying,
"type" character varying(255),
checkout_settings text,
CONSTRAINT repositories_pkey PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment