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

@ -9,3 +9,9 @@ ALTER TABLE Users ADD COLUMN OwnershipNotify TINYINT(1) NOT NULL DEFAULT 1;
----
ALTER TABLE Users MODIFY LastLoginIPAddress VARCHAR(45) NULL DEFAULT NULL;
----
3. Add a new column to store repository information of official providers:
----
ALTER TABLE OfficialProviders ADD COLUMN Repo VARCHAR(64) NOT NULL;
----