All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.trigger_functions.on_endpoints_insert.sql Maven / Gradle / Ivy

CREATE OR REPLACE FUNCTION on_endpoints_insert() RETURNS TRIGGER AS $$
BEGIN
	PERFORM on_resources_insert(NEW.endpoint_id, NEW.version, NEW.endpoint);
	RETURN NEW;
END;
$$ LANGUAGE PLPGSQL




© 2015 - 2025 Weber Informatics LLC | Privacy Policy