DocSpace-buildtools/common/ASC.WebPlugins/sql/plugins.sql
2022-08-24 12:35:49 +03:00

7 lines
207 B
SQL

CREATE TABLE IF NOT EXISTS `plugin` (
`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;