This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/plugins/KTPFramework/database.sql

10 lines
357 B
MySQL
Raw Permalink Normal View History

DROP TABLE IF EXISTS `ktp_fw_triggers`;
CREATE TABLE `ktp_fw_triggers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin` varchar(255) NOT NULL DEFAULT '',
`type` varchar(20) NOT NULL DEFAULT '',
`class` varchar(255) NOT NULL DEFAULT '',
`file` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;