File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1+ alter table packages add column pkgconfig_names text [] NULL ;
2+
3+ CREATE TYPE project_identifier_type AS enum(
4+ ' pkgconfig'
5+ );
6+
7+ CREATE TABLE project_identifiers (
8+ project_id integer NOT NULL ,
9+ " type" project_identifier_type NOT NULL ,
10+ identifier text NOT NULL
11+ );
12+
13+ CREATE INDEX ON project_identifiers(project_id);
14+ CREATE INDEX ON project_identifiers(identifier);
Original file line number Diff line number Diff line change @@ -506,9 +506,7 @@ CREATE TABLE links (
506506 ipv6_last_failure timestamp with time zone ,
507507 ipv6_success boolean ,
508508 ipv6_status_code smallint ,
509- ipv6_permanent_redirect_target text ,
510-
511- check_duration real
509+ ipv6_permanent_redirect_target text
512510);
513511
514512CREATE UNIQUE INDEX ON links(url);
You can’t perform that action at this time.
0 commit comments