DocSpace-buildtools/common/ASC.WebPlugins/sql/plugins.sql
2022-08-23 14:22:49 +03:00

7 lines
208 B
SQL

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