DocSpace-buildtools/common/ASC.WebPlugins/sql/plugins.sql

7 lines
207 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS `plugin` (
2022-08-23 11:22:49 +00:00
`id` varchar(200) NOT NULL,
`name` text NOT NULL,
`filename` text NOT NULL,
`isActive` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;