Add install/SYS_PRD_BND.SupportFunctions.sql

This commit is contained in:
git 2025-06-06 14:25:12 +01:00
parent 20d98bbfd5
commit 55cc6bd0ee

View File

@ -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`)
);