add missing primary key to bos_pocsag

This commit is contained in:
JHCD 2015-07-13 15:03:31 +02:00
parent ffb1495a3b
commit 1c78f9ad78

View file

@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS `bos_pocsag` (
`bitrate` int(4),
`msg` text,
`description` text,
KEY `ID` (`ID`)
PRIMARY KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------