mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +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));
|
|
|