mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 10:10:01 +00:00
5 lines
128 B
MySQL
5 lines
128 B
MySQL
|
-- The username index
|
||
|
drop index idx_user_name_lower_actor_id;
|
||
|
create unique index idx_user_name_lower on user_ (lower(name));
|
||
|
|