PHP Classes

File: src/Installer/sql/pgsql/00-procedures.sql

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   src/Installer/sql/pgsql/00-procedures.sql   Download  
File: src/Installer/sql/pgsql/00-procedures.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change:
Date: 7 years ago
Size: 175 bytes
 

Contents

Class file image Download
CREATE OR REPLACE FUNCTION update_modtime() RETURNS TRIGGER AS $body$ BEGIN NEW.modified = NOW(); RETURN NEW; END; $body$ language 'plpgsql';