Skip to content

Commit

Permalink
index with lower()
Browse files Browse the repository at this point in the history
  • Loading branch information
alikon committed Mar 25, 2019
1 parent b9cb58b commit 4ad4b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/sql/postgresql/joomla.sql
Expand Up @@ -2052,7 +2052,7 @@ CREATE TABLE "#__users" (
CREATE INDEX "#__users_idx_name" ON "#__users" ("name");
CREATE INDEX "#__users_idx_block" ON "#__users" ("block");
CREATE INDEX "#__users_username" ON "#__users" ("username");
CREATE INDEX "#__users_email" ON "#__users" ("email");
CREATE UNIQUE INDEX "#__users_email" ON "#__users" ((lower("email")));

COMMENT ON COLUMN "#__users"."lastResetTime" IS 'Date of last password reset';
COMMENT ON COLUMN "#__users"."resetCount" IS 'Count of password resets since lastResetTime';
Expand Down

0 comments on commit 4ad4b32

Please sign in to comment.