reactiveData/install/SYS_PRD_BND.Tables.sql
Backup user agent f56f2c8338 init
2025-06-06 13:59:54 +04:00

10 lines
305 B
SQL

USE SYS_PRD_BND;
CREATE TABLE `Tables` (
`Name` varchar(255) NOT NULL,
`onUpdate_phpCode` text DEFAULT NULL,
`onUpdate_pyCode` text DEFAULT NULL,
`LastError` text DEFAULT NULL,
`LastUpdated` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`Name`)
);