summaryrefslogtreecommitdiffstats
path: root/schema/aur-schema.sql
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2016-05-17 19:03:39 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2016-05-18 09:22:44 +0200
commitb2e97cdd1ee804468b2dd601eafda9574c05a3a7 (patch)
treed46b255a6a6bfb60e24c92eda609fe584ba88794 /schema/aur-schema.sql
parent1e5578b92df39579e590bbfd4bd01ebb42eaafe0 (diff)
downloadaurweb-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/aur-schema.sql')
-rw-r--r--schema/aur-schema.sql1
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;