]> Untitled Git - lemmy.git/blob - migrations/2023-07-05-000058_person-admin/up.sql
Revert "Attempt to fix CI building wrong commits (#3830)"
[lemmy.git] / migrations / 2023-07-05-000058_person-admin / up.sql
1 DROP INDEX IF EXISTS idx_person_admin;
2
3 CREATE INDEX idx_person_admin ON person (admin)
4 WHERE
5     admin;
6
7 -- allow quickly finding all admins (PersonView::admins)