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
parent
784f9d925c
commit
10ebb7442c
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue