remove references to the archivefiles table
This commit is contained in:
parent
e333cba838
commit
82d44a4dbb
4 changed files with 48 additions and 62 deletions
|
|
@ -53,3 +53,4 @@ GRANT SELECT ON external_repo, external_repo_config, tag_external_repos TO PUBLI
|
|||
-- DROP TABLE rpmfiles;
|
||||
-- DROP TABLE rpmdeps;
|
||||
-- DROP TABLE changelogs;
|
||||
-- DROP TABLE archivefiles;
|
||||
|
|
|
|||
|
|
@ -659,13 +659,4 @@ CREATE TABLE buildroot_archives (
|
|||
) WITHOUT OIDS;
|
||||
CREATE INDEX buildroot_archives_archive_idx ON buildroot_archives (archive_id);
|
||||
|
||||
CREATE TABLE archivefiles (
|
||||
archive_id INTEGER NOT NULL REFERENCES archiveinfo (id),
|
||||
filename TEXT NOT NULL,
|
||||
size INTEGER NOT NULL,
|
||||
md5sum TEXT,
|
||||
PRIMARY KEY (archive_id, filename)
|
||||
) WITHOUT OIDS;
|
||||
CREATE INDEX archivefiles_by_filename on archivefiles (filename);
|
||||
|
||||
COMMIT WORK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue