summaryrefslogtreecommitdiff
path: root/util/updates/update_2.26.sql
blob: 6900d080a4731b2acc38e98b65498ea01b6c3fcf (plain)
1
2
3
4
5
6
7
8
9
-- No more 'staffedit' permission flag
UPDATE users SET perm = (perm & ~8);

-- Removed support for sha256-hashed passwords
UPDATE users SET passwd = '' WHERE length(passwd) = 41;

-- Need to regenerate all relation graphs in the switch to HTML5
UPDATE vn SET rgraph = NULL;
UPDATE producers SET rgraph = NULL;