Skip to content
Snippets Groups Projects
Commit 75e735c4 authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Added key to clients table for authentication

parent fb874f4a
Branches
Tags
No related merge requests found
......@@ -53,7 +53,8 @@ CREATE TABLE IF NOT EXISTS `clients` (
`debug` tinyint(1) NOT NULL DEFAULT '0',
`write` tinyint(1) NOT NULL DEFAULT '0',
`test` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
PRIMARY KEY (`id`),
KEY `clients_1` (`valid`, `secret`, `hostname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 DEFAULT COLLATE utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment