Require TUs to explicitly request to overwrite a pkgbase
[aur.git] / upgrading / 4.3.0.txt
blob78f945516c112d089b71ff57d657b5ed465ac7c1
1 1. Add a column to store ownership notification settings:
3 ----
4 ALTER TABLE Users ADD COLUMN OwnershipNotify TINYINT(1) NOT NULL DEFAULT 1;
5 ----
7 2. Resize the LastLoginIPAddress column:
9 ----
10 ALTER TABLE Users MODIFY LastLoginIPAddress VARCHAR(45) NULL DEFAULT NULL;
11 ----
13 3. Add a new column to store repository information of official providers:
15 ----
16 ALTER TABLE OfficialProviders ADD COLUMN Repo VARCHAR(64) NOT NULL;
17 ----
19 4. Add a column to store users' homepages:
21 ----
22 ALTER TABLE Users ADD COLUMN Homepage TEXT NULL DEFAULT NULL;
23 ----
25 5. Resize LangPreference to fit Latin American Spanish language code:
28 ALTER TABLE Users MODIFY LangPreference VARCHAR(6);