diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-08-08 04:54:11 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-08-08 04:54:11 +0100 | 
| commit | 56d71a7f601a1dafbceaae9e0873f2c560a222ea (patch) | |
| tree | 06212963b040cfd2c7e7d54042c97a6e80771450 | |
| parent | Fixes from first run with packages in a second repo (diff) | |
| download | gentoobrowse-56d71a7f601a1dafbceaae9e0873f2c560a222ea.tar.bz2 gentoobrowse-56d71a7f601a1dafbceaae9e0873f2c560a222ea.tar.xz gentoobrowse-56d71a7f601a1dafbceaae9e0873f2c560a222ea.zip | |
Set proper not nulls
| -rw-r--r-- | gentoobrowse/datasources/schema.sql | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/gentoobrowse/datasources/schema.sql b/gentoobrowse/datasources/schema.sql index 36877a4..4eec710 100644 --- a/gentoobrowse/datasources/schema.sql +++ b/gentoobrowse/datasources/schema.sql @@ -316,7 +316,7 @@ CREATE TABLE ebuilds (      license text,      firstseen timestamp without time zone NOT NULL,      moddate timestamp without time zone NOT NULL, -    repoid integer +    repoid integer NOT NULL  );  ALTER TABLE ebuilds OWNER TO gentoo;  -- Name: TABLE ebuilds; Type: COMMENT; Schema: gentoobrowse; Owner: gentoo @@ -329,16 +329,16 @@ CREATE TABLE files (      firstseen timestamp without time zone DEFAULT now() NOT NULL,      cachedat timestamp without time zone,      filetypeid integer NOT NULL, -    repoid integer DEFAULT 1 NOT NULL, -    filesize integer, -    pathparts text[] +    repoid integer NOT NULL, +    filesize integer NOT NULL, +    pathparts text[] NOT NULL  );  ALTER TABLE files OWNER TO gentoo;  -- Name: filetypes; Type: TABLE; Schema: gentoobrowse; Owner: gentoo; Tablespace:   CREATE TABLE filetypes (      filetypeid integer NOT NULL,      description text NOT NULL, -    spec filterspec[] +    spec filterspec[] NOT NULL  );  ALTER TABLE filetypes OWNER TO gentoo;  -- Name: TABLE filetypes; Type: COMMENT; Schema: gentoobrowse; Owner: gentoo @@ -346,7 +346,7 @@ COMMENT ON TABLE filetypes IS 'What kind of file is this?... metadata, changelog  -- Name: license; Type: TABLE; Schema: gentoobrowse; Owner: gentoo; Tablespace:   CREATE TABLE license (      name text NOT NULL, -    legalbumph text +    legalbumph text NOT NULL  );  ALTER TABLE license OWNER TO gentoo;  -- Name: masksets; Type: TABLE; Schema: gentoobrowse; Owner: gentoo; Tablespace:  @@ -476,7 +476,7 @@ ALTER SEQUENCE use_groups_usegroupid_seq OWNED BY use_groups.usegroupid;  CREATE TABLE use_local (      packageid integer NOT NULL,      use text NOT NULL, -    description text +    description text NOT NULL  );  ALTER TABLE use_local OWNER TO gentoo;  -- Name: user_ebuild_emails; Type: TABLE; Schema: gentoobrowse; Owner: gentoo; Tablespace:  | 
