diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-05-17 19:03:39 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-05-18 09:22:44 +0200 |
commit | b2e97cdd1ee804468b2dd601eafda9574c05a3a7 (patch) | |
tree | d46b255a6a6bfb60e24c92eda609fe584ba88794 /schema | |
parent | 1e5578b92df39579e590bbfd4bd01ebb42eaafe0 (diff) | |
download | aurweb-b2e97cdd1ee804468b2dd601eafda9574c05a3a7.tar.xz |
Add repository information to official providers
When updating the list of packages provided by the official
repositories, also save the repository names.
Diffstat (limited to 'schema')
-rw-r--r-- | schema/aur-schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/aur-schema.sql b/schema/aur-schema.sql index 0804ac3..ea19d46 100644 --- a/schema/aur-schema.sql +++ b/schema/aur-schema.sql @@ -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; |