PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / trunk
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration vtrunk
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
← All changes | database/Migrations/TaskMetaMigrator.php +2 -0 1.20trunk View file →
@@ -16,9 +16,11 @@
16 16
17 17 $charsetCollate = $wpdb->get_charset_collate();
18 18 $table = $wpdb->prefix . 'fbs_task_metas';
19 19
20 + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Schema check query, caching not applicable for migrations
20 21 if ($wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE %s", $table)) != $table || $isForced) {
22 + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.SchemaChange -- Table name cannot be prepared in CREATE TABLE
21 23 $sql = "CREATE TABLE $table (
22 24 `id` INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
23 25 `task_id` INT UNSIGNED NOT NULL,
24 26 `key` VARCHAR(100) NOT NULL,