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/sql/mysql/upgrade/3.1.6/interceptor_instances.sql

15 lines
436 B
MySQL
Raw Normal View History

CREATE TABLE `interceptor_instances` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`interceptor_namespace` varchar(255) NOT NULL,
`config` text,
PRIMARY KEY (`id`),
KEY `interceptor_namespace` (`interceptor_namespace`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zseq_interceptor_instances` (
`id` int(10) unsigned NOT NULL auto_increment,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;