Add links to all owned packages to the dashboard
[aur.git] / upgrading / 4.5.0.txt
blobfb0a2993a5a6f06f50d54457701d154c98d7f088
1 1. Add Timezone column to Users:
3 ---
4 ALTER TABLE Users ADD COLUMN Timezone VARCHAR(32) NOT NULL DEFAULT 'UTC';
5 ---
7 2. Add LastSSHLogin and LastSSHLoginIPAddress columns to the Users table:
9 ---
10 ALTER TABLE Users
11         ADD COLUMN LastSSHLogin BIGINT UNSIGNED NOT NULL DEFAULT 0,
12         ADD COLUMN LastSSHLoginIPAddress VARCHAR(45) NULL DEFAULT NULL;
13 ---
15 3. Convert the IPAddress column of the Bans table to VARCHAR(45). If the table
16    contains any active bans, convert them accordingly:
18 ----
19 ALTER TABLE Bans MODIFY IPAddress VARCHAR(45) NULL DEFAULT NULL;
20 ----