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