[Collab-qa-commits] r1173 - buildstat/trunk/buildstat-server
goneri at alioth.debian.org
goneri at alioth.debian.org
Thu Aug 28 14:45:09 UTC 2008
Author: goneri
Date: 2008-08-28 14:45:07 +0000 (Thu, 28 Aug 2008)
New Revision: 1173
Modified:
buildstat/trunk/buildstat-server/schema-pg.sql
Log:
no more tarball table.
Modified: buildstat/trunk/buildstat-server/schema-pg.sql
===================================================================
--- buildstat/trunk/buildstat-server/schema-pg.sql 2008-08-28 14:28:28 UTC (rev 1172)
+++ buildstat/trunk/buildstat-server/schema-pg.sql 2008-08-28 14:45:07 UTC (rev 1173)
@@ -308,7 +308,6 @@
version text,
epoch integer,
isindebian boolean,
- tarball_id integer,
rev text,
debrevision text,
lastbuildstart timestamp without time zone,
@@ -635,7 +634,6 @@
CREATE TABLE repositoryentry (
id integer DEFAULT nextval('repositoryentry_id_seq'::regclass) NOT NULL,
repository_id integer NOT NULL,
- istarballpresent boolean DEFAULT false,
upstreamversion text,
lastcheck timestamp without time zone,
blacklisted boolean DEFAULT false,
@@ -658,13 +656,6 @@
ALTER TABLE public.repositoryentry OWNER TO buildstat;
--
--- Name: COLUMN repositoryentry.istarballpresent; Type: COMMENT; Schema: public; Owner: buildstat
---
-
-COMMENT ON COLUMN repositoryentry.istarballpresent IS 'vcs only, is it possible to find the upstream tarball to prepare the source repositoryentry to build';
-
-
---
-- Name: COLUMN repositoryentry.blacklisted; Type: COMMENT; Schema: public; Owner: buildstat
--
@@ -733,33 +724,6 @@
--
--- Name: tarball_id_seq; Type: SEQUENCE; Schema: public; Owner: buildstat
---
-
-CREATE SEQUENCE tarball_id_seq
- INCREMENT BY 1
- NO MAXVALUE
- NO MINVALUE
- CACHE 1;
-
-
-ALTER TABLE public.tarball_id_seq OWNER TO buildstat;
-
---
--- Name: tarball; Type: TABLE; Schema: public; Owner: buildstat; Tablespace:
---
-
-CREATE TABLE tarball (
- id integer DEFAULT nextval('tarball_id_seq'::regclass) NOT NULL,
- name text NOT NULL,
- size integer
-);
-
-
-ALTER TABLE public.tarball OWNER TO buildstat;
-
-
---
-- Name: userlogin_id_seq; Type: SEQUENCE; Schema: public; Owner: buildstat
--
@@ -1410,15 +1374,6 @@
--
--- Name: tarball_pkey; Type: CONSTRAINT; Schema: public; Owner: buildstat; Tablespace:
---
-
-ALTER TABLE ONLY tarball
- ADD CONSTRAINT tarball_pkey PRIMARY KEY (id);
-
-
-
---
-- Name: vcs_name_key; Type: CONSTRAINT; Schema: public; Owner: buildstat; Tablespace:
--
@@ -1626,14 +1581,6 @@
--
--- Name: changelogentry_tarball_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: buildstat
---
-
-ALTER TABLE ONLY changelogentry
- ADD CONSTRAINT changelogentry_tarball_id_fkey FOREIGN KEY (tarball_id) REFERENCES tarball(id) ON DELETE CASCADE;
-
-
---
-- Name: qajob_build_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: buildstat
--
More information about the Collab-qa-commits
mailing list