Add repository information to official providers

When updating the list of packages provided by the official
repositories, also save the repository names.
This commit is contained in:
Lukas Fleischer 2016-05-17 19:03:39 +02:00
parent 1e5578b92d
commit b2e97cdd1e
3 changed files with 13 additions and 2 deletions

View file

@ -310,6 +310,7 @@ CREATE TABLE PackageBlacklist (
CREATE TABLE OfficialProviders (
ID INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
Name VARCHAR(64) NOT NULL,
Repo VARCHAR(64) NOT NULL,
Provides VARCHAR(64) NOT NULL,
PRIMARY KEY (ID)
) ENGINE = InnoDB;