diff --git a/tests/fixtures/blog_mysql.sql b/tests/fixtures/blog_mysql.sql index a45201aa..dc25675f 100644 --- a/tests/fixtures/blog_mysql.sql +++ b/tests/fixtures/blog_mysql.sql @@ -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), diff --git "a/tests/functional/001_records/062_read_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/062_read_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/062_read_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/062_read_kunsthandvaerk.log diff --git "a/tests/functional/001_records/063_list_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/063_list_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/063_list_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/063_list_kunsthandvaerk.log diff --git "a/tests/functional/001_records/064_add_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/064_add_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/064_add_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/064_add_kunsthandvaerk.log diff --git "a/tests/functional/001_records/065_edit_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/065_edit_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/065_edit_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/065_edit_kunsthandvaerk.log diff --git "a/tests/functional/001_records/066_delete_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/066_delete_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/066_delete_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/066_delete_kunsthandvaerk.log diff --git "a/tests/functional/001_records/073_multi_tenancy_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/073_multi_tenancy_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/073_multi_tenancy_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/073_multi_tenancy_kunsthandvaerk.log diff --git "a/tests/functional/001_records/074_custom_kunsth\303\245ndv\303\246rk.log" b/tests/functional/001_records/074_custom_kunsthandvaerk.log similarity index 100% rename from "tests/functional/001_records/074_custom_kunsth\303\245ndv\303\246rk.log" rename to tests/functional/001_records/074_custom_kunsthandvaerk.log