summaryrefslogtreecommitdiff
path: root/sql/modules/Account.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/modules/Account.sql')
-rw-r--r--sql/modules/Account.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/modules/Account.sql b/sql/modules/Account.sql
index 33c51ab1..36275744 100644
--- a/sql/modules/Account.sql
+++ b/sql/modules/Account.sql
@@ -8,7 +8,7 @@ BEGIN
SELECT * INTO account FROM chart WHERE id = in_id;
RETURN account;
END;
-$$ LANGAUGE plpgsql;
+$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION account_is_orphaned (in_id int) RETURNS bool AS
$$