From 55cc6bd0ee505c04f0148906eefc7b743d1a25dd Mon Sep 17 00:00:00 2001 From: git Date: Fri, 6 Jun 2025 14:25:12 +0100 Subject: [PATCH] Add install/SYS_PRD_BND.SupportFunctions.sql --- install/SYS_PRD_BND.SupportFunctions.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 install/SYS_PRD_BND.SupportFunctions.sql diff --git a/install/SYS_PRD_BND.SupportFunctions.sql b/install/SYS_PRD_BND.SupportFunctions.sql new file mode 100644 index 0000000..dd42d1c --- /dev/null +++ b/install/SYS_PRD_BND.SupportFunctions.sql @@ -0,0 +1,10 @@ +USE SYS_PRD_BND; +CREATE TABLE `SupportFunctions` ( + `Name` varchar(255) NOT NULL, + `InputArgs_json` varchar(255) DEFAULT NULL, + `PhpCode` text DEFAULT NULL, + `PythonCode` text DEFAULT NULL, + `JavascriptCode` text DEFAULT NULL, + `LastUpdated` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`Name`) +); \ No newline at end of file