Skip to content

Commit 28026d6

Browse files
committed
utf8 filenames
1 parent b9b060b commit 28026d6

8 files changed

+4
-4
lines changed

tests/fixtures/blog_mysql.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
77

88
DROP TABLE IF EXISTS `categories`;
99
CREATE TABLE `categories` (
10-
`id` int(11) NOT NULL AUTO_INCREMENT,
11-
`name` varchar(255) NOT NULL,
12-
`icon` blob,
10+
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The identifier of the category.',
11+
`name` varchar(255) NOT NULL COMMENT 'The name of the category.',
12+
`icon` blob COMMENT 'A small image representing the category.',
1313
PRIMARY KEY (`id`)
14-
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
14+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='The post categories of the blog system.';
1515

1616
INSERT INTO `categories` (`name`, `icon`) VALUES
1717
('announcement', NULL),

0 commit comments

Comments
 (0)