You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 18, 2024. It is now read-only.
/*!40101 SET character_set_client = @saved_cs_client */;
323
323
324
324
--
@@ -329,13 +329,13 @@ DROP TABLE IF EXISTS `updates`;
329
329
/*!40101 SET @saved_cs_client = @@character_set_client */;
330
330
/*!40101 SET character_set_client = utf8 */;
331
331
CREATETABLE `updates` (
332
-
`name`varchar(200) NOT NULL COMMENT 'filename with extension of the update.',
333
-
`hash`char(40) DEFAULT '' COMMENT 'sha1 hash of the sql file.',
334
-
`state` enum('RELEASED','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
332
+
`name`varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'filename with extension of the update.',
333
+
`hash`char(40) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'sha1 hash of the sql file.',
334
+
`state` enum('RELEASED','ARCHIVED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
335
335
`timestamp`timestampNOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
336
336
`speed`int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
337
337
PRIMARY KEY (`name`)
338
-
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of all applied updates in this database.';
338
+
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
339
339
/*!40101 SET character_set_client = @saved_cs_client */;
340
340
341
341
--
@@ -346,11 +346,15 @@ DROP TABLE IF EXISTS `updates_include`;
346
346
/*!40101 SET @saved_cs_client = @@character_set_client */;
347
347
/*!40101 SET character_set_client = utf8 */;
348
348
CREATETABLE `updates_include` (
349
-
`path`varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
350
-
`state` enum('RELEASED','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
349
+
`path`varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
350
+
`state` enum('RELEASED','ARCHIVED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
351
351
PRIMARY KEY (`path`)
352
-
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of directories where we want to include sql updates.';
352
+
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
353
353
/*!40101 SET character_set_client = @saved_cs_client */;
0 commit comments