feat: Event Type에 United 추가, Enums 추가

This commit is contained in:
2023-03-12 17:02:30 +09:00
parent afb4126a52
commit 401b4f41b2
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -484,7 +484,7 @@ CREATE TABLE IF NOT EXISTS `ng_history` (
##############################
CREATE TABLE `event` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`target` ENUM('MONTH', 'OCCUPY_CITY', 'DESTROY_NATION','PRE_MONTH') NOT NULL DEFAULT 'MONTH',
`target` ENUM('MONTH', 'OCCUPY_CITY', 'DESTROY_NATION','PRE_MONTH', 'UNITED') NOT NULL DEFAULT 'MONTH',
`priority` INT(11) NOT NULL DEFAULT '1000',
`condition` MEDIUMTEXT NOT NULL COLLATE 'utf8mb4_bin',
`action` MEDIUMTEXT NOT NULL COLLATE 'utf8mb4_bin',