Update zm_create.sql.in

When creating a new dB, we should drop the Logs table if it already exists, just like we do with the other tables.
pull/302/head
Andrew Bauer 2014-01-17 08:35:37 -06:00
parent 784f9d925c
commit 10ebb7442c
1 changed files with 2 additions and 0 deletions

View File

@ -262,6 +262,8 @@ CREATE TABLE `Groups` (
--
-- Table structure for table `Logs`
--
DROP TABLE IF EXISTS `Logs`;
CREATE TABLE `Logs` (
`TimeKey` decimal(16,6) NOT NULL,
`Component` varchar(32) NOT NULL,