blob: 1f62808791b2b9a0138d69b7fa9c478b7eb03daf (
plain)
1
2
3
4
5
6
7
8
9
|
/* $PostgreSQL$ */
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION moddatetime()
RETURNS trigger
AS 'MODULE_PATHNAME'
LANGUAGE C;
|