mirror of
https://github.com/Jetsparrow/jetherald.git
synced 2026-01-20 23:56:08 +03:00
Shameful commas fix in db base
This commit is contained in:
parent
3cc7dfa233
commit
c0f834780d
@ -54,8 +54,8 @@ CREATE TABLE `heartevent` (
|
|||||||
`Event` varchar(16) NOT NULL COMMENT 'ENUM(''created'',''started'',''stopped'',''deleted'')',
|
`Event` varchar(16) NOT NULL COMMENT 'ENUM(''created'',''started'',''stopped'',''deleted'')',
|
||||||
`CreateTs` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
`CreateTs` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
PRIMARY KEY (`HeartEventId`),
|
PRIMARY KEY (`HeartEventId`),
|
||||||
KEY `idx_heartevent_TopicId` (`TopicId`,`HeartEventId`)
|
KEY `idx_heartevent_TopicId` (`TopicId`,`HeartEventId`),
|
||||||
KEY `idx_heartevent_Status` (`Status`),
|
KEY `idx_heartevent_Status` (`Status`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user