mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-05-05 01:00:35 +08:00
a9e002cc5a
Update and simplify copyright notices.
10 lines
344 B
Plaintext
10 lines
344 B
Plaintext
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `csp_browser` (
|
|
`id` tinyint(3) unsigned NOT NULL,
|
|
`name` varchar(20) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `name` (`name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|