mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-16 20:50:10 +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
329 B
SQL
6 lines
329 B
SQL
/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */
|
|
|
|
ALTER TABLE "icingaweb_group_membership" ALTER COLUMN "username" TYPE character varying(254);
|
|
ALTER TABLE "icingaweb_user" ALTER COLUMN "name" TYPE character varying(254);
|
|
ALTER TABLE "icingaweb_user_preference" ALTER COLUMN "username" TYPE character varying(254);
|