mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-27 06:50:20 +00:00
4 lines
128 B
SQL
Vendored
4 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));
|
|
|