summaryrefslogtreecommitdiff
path: root/util/sql/func.sql
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2013-01-05 13:18:33 +0100
committerYorhel <git@yorhel.nl>2013-01-05 13:18:33 +0100
commit68e04dade4a8bddffb13c09114f9c34867d2077b (patch)
tree7e6776452b421a6bfa8ada4ac96f123d9ffe8cf3 /util/sql/func.sql
parent5fb01aeb58c77d2abda4e11d72be2217215a0ce5 (diff)
Don't use Multi for processing character images
Diffstat (limited to 'util/sql/func.sql')
-rw-r--r--util/sql/func.sql7
1 files changed, 0 insertions, 7 deletions
diff --git a/util/sql/func.sql b/util/sql/func.sql
index 261ce9ad..3f52475e 100644
--- a/util/sql/func.sql
+++ b/util/sql/func.sql
@@ -603,13 +603,6 @@ $$ LANGUAGE plpgsql;
--- Send a notify when a new character image is uploaded
-CREATE OR REPLACE FUNCTION chars_rev_image_notify() RETURNS trigger AS $$
- BEGIN NOTIFY charimage; RETURN NULL; END;
-$$ LANGUAGE plpgsql;
-
-
-
-- Send a notify when a screenshot needs to be processed
CREATE OR REPLACE FUNCTION screenshot_process_notify() RETURNS trigger AS $$
BEGIN NOTIFY screenshot; RETURN NULL; END;