diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-25 10:52:30 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-25 10:57:46 +0100 |
commit | d52b2f50b9a5b77330c41dd93e0f3177b810c018 (patch) | |
tree | 44b7006397632e6c0bf29af1e6978fc6f2fa75f5 /upgrading | |
parent | f9ac67f6917eb5f4db89cf8407a33ad37d7f3935 (diff) | |
download | aurweb-d52b2f50b9a5b77330c41dd93e0f3177b810c018.tar.xz |
Support long email addresses
According to RFC 3696 (and the associated errata), an email address can
be up to 256 characters long. Change the database field and the length
limit on all input fields accordingly.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'upgrading')
-rw-r--r-- | upgrading/4.2.0.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/upgrading/4.2.0.txt b/upgrading/4.2.0.txt index 37cbeae..c195f41 100644 --- a/upgrading/4.2.0.txt +++ b/upgrading/4.2.0.txt @@ -9,3 +9,9 @@ CREATE TABLE OfficialProviders ( ) ENGINE = InnoDB; CREATE UNIQUE INDEX ProviderNameProvides ON OfficialProviders (Name, Provides); ---- + +2. Resize the email address field: + +---- +ALTER TABLE Users MODIFY Email VARCHAR(256) NOT NULL; +---- |