mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
In order to support usernames with domains, the length of the username columns is now 254 which also supports email addresses as usernames. refs #2153
6 lines
382 B
SQL
6 lines
382 B
SQL
# Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+
|
|
|
|
ALTER TABLE `icingaweb_group_membership` MODIFY COLUMN `username` varchar(254) COLLATE utf8_unicode_ci NOT NULL;
|
|
ALTER TABLE `icingaweb_user` MODIFY COLUMN `name` varchar(254) COLLATE utf8_unicode_ci NOT NULL;
|
|
ALTER TABLE `icingaweb_user_preference` MODIFY COLUMN `username` varchar(254) COLLATE utf8_unicode_ci NOT NULL;
|