diff options
Diffstat (limited to 'upgrading')
-rw-r--r-- | upgrading/4.3.0.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/upgrading/4.3.0.txt b/upgrading/4.3.0.txt new file mode 100644 index 0000000..34b19a2 --- /dev/null +++ b/upgrading/4.3.0.txt @@ -0,0 +1,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; +---- |