mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
10 lines
273 B
SQL
10 lines
273 B
SQL
/* contrib/spi/insert_username--1.0.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
|
\echo Use "CREATE EXTENSION insert_username" to load this file. \quit
|
|
|
|
CREATE FUNCTION insert_username()
|
|
RETURNS trigger
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C;
|