Skip to content

Commit

Permalink
utf8 filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed Oct 1, 2019
1 parent b9b060b commit 28026d6
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/fixtures/blog_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';

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

INSERT INTO `categories` (`name`, `icon`) VALUES
('announcement', NULL),
Expand Down

0 comments on commit 28026d6

Please sign in to comment.