summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2014-10-16 14:55:53 +0200
committerYorhel <git@yorhel.nl>2014-10-16 14:55:53 +0200
commitbe93706e30414ce8c32d165844cb67895ef0c7d6 (patch)
tree63bda9912dc4bf5c5d0d1173d9c39103a319bde6 /util
parent73268c92ddbd791e8375cdfab6ccdd3fee01329e (diff)
Completely get rid of the old charedit perm flag
Diffstat (limited to 'util')
-rw-r--r--util/updates/update_2.24.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/updates/update_2.24.sql b/util/updates/update_2.24.sql
index 04d946f1..6bc33313 100644
--- a/util/updates/update_2.24.sql
+++ b/util/updates/update_2.24.sql
@@ -4,3 +4,7 @@
-- CREATE EXTENSION pgcrypto;
UPDATE sessions SET token = digest(token, 'sha1');
-- DROP EXTENSION pgcrypto;
+
+
+-- No more 'charedit' permission flag
+UPDATE users SET perm = (perm & ~8);