summaryrefslogtreecommitdiffstats
path: root/upgrading/4.3.0.txt
blob: 34b19a2ca160fb3b68a7f919ad51d14e4e2f7c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
1. Add a column to store ownership notification settings:

----
ALTER TABLE Users ADD COLUMN OwnershipNotify TINYINT(1) NOT NULL DEFAULT 1;
----

2. Resize the LastLoginIPAddress column:

----
ALTER TABLE Users MODIFY LastLoginIPAddress VARCHAR(45) NULL DEFAULT NULL;
----