Cases List Cache Builder display

This commit is contained in:
girish
2011-03-12 12:54:31 +00:00
parent 8b9912eb65
commit 81ff933f7e
6 changed files with 438 additions and 32 deletions

View File

@@ -0,0 +1,7 @@
CREATE TRIGGER APPLICATION_DELETE
ON APPLICATION
INSTEAD OF DELETE
AS
BEGIN
DELETE FROM APP_CACHE_VIEW WHERE APP_UID = 'OLD.APP_UID';
END