Make it clear which service is triggering the exception.

This commit is contained in:
Guo Xiang Tan 2017-05-31 06:35:52 +09:00
parent 4144ea34a2
commit 0f2148be9b

View File

@ -3,7 +3,7 @@ class TableMigrationHelper
ActiveRecord::Base.exec_sql <<-SQL
CREATE OR REPLACE FUNCTION raise_read_only() RETURNS trigger AS $rro$
BEGIN
RAISE EXCEPTION 'Table is read only';
RAISE EXCEPTION 'Discourse: Table is read only';
RETURN null;
END
$rro$ LANGUAGE plpgsql;