summaryrefslogtreecommitdiff
path: root/util/updates/update_2.20.sql
diff options
context:
space:
mode:
Diffstat (limited to 'util/updates/update_2.20.sql')
-rw-r--r--util/updates/update_2.20.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/util/updates/update_2.20.sql b/util/updates/update_2.20.sql
new file mode 100644
index 00000000..236161d2
--- /dev/null
+++ b/util/updates/update_2.20.sql
@@ -0,0 +1,11 @@
+
+ALTER TYPE notification_ltype RENAME TO tmp;
+CREATE TYPE notification_ltype AS ENUM ('v', 'r', 'p', 'c', 't');
+ALTER TABLE notifications ALTER COLUMN ltype TYPE notification_ltype USING ltype::text::notification_ltype;
+DROP TYPE tmp;
+
+\i util/sql/func.sql
+
+CREATE TRIGGER notify_dbdel AFTER UPDATE ON chars FOR EACH ROW WHEN (NOT OLD.hidden AND NEW.hidden) EXECUTE PROCEDURE notify_dbdel();
+CREATE TRIGGER notify_dbedit AFTER UPDATE ON chars FOR EACH ROW WHEN (OLD.latest IS DISTINCT FROM NEW.latest AND NOT NEW.hidden) EXECUTE PROCEDURE notify_dbedit();
+