Created
July 14, 2010 15:12
-
-
Save meineerde/475525 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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