Skip to content

Commit 5fd45b8

Browse files
committed
modified: golang-website-example.sql
1 parent 8afed55 commit 5fd45b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

golang-website-example.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121

2222
DROP TABLE IF EXISTS `cities`;
2323
/*!40101 SET @saved_cs_client = @@character_set_client */;
24-
/*!50503 SET character_set_client = utf8mb4 */;
24+
/*!50503 SET character_set_client = utf8 */;
2525
CREATE TABLE `cities` (
2626
`id` int unsigned NOT NULL AUTO_INCREMENT,
2727
`city` varchar(255) DEFAULT NULL,
2828
PRIMARY KEY (`id`)
29-
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
29+
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
3030
/*!40101 SET character_set_client = @saved_cs_client */;
3131

3232
--
@@ -45,7 +45,7 @@ UNLOCK TABLES;
4545

4646
DROP TABLE IF EXISTS `users`;
4747
/*!40101 SET @saved_cs_client = @@character_set_client */;
48-
/*!50503 SET character_set_client = utf8mb4 */;
48+
/*!50503 SET character_set_client = utf8 */;
4949
CREATE TABLE `users` (
5050
`id` int unsigned NOT NULL AUTO_INCREMENT,
5151
`created_at` datetime DEFAULT NULL,
@@ -62,7 +62,7 @@ CREATE TABLE `users` (
6262
UNIQUE KEY `email_UNIQUE` (`email`),
6363
UNIQUE KEY `username_UNIQUE` (`username`),
6464
KEY `idx_users_deleted_at` (`deleted_at`)
65-
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
65+
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
6666
/*!40101 SET character_set_client = @saved_cs_client */;
6767

6868
--

0 commit comments

Comments
 (0)