From 9240352952810429393d9d8c875f28dafa2162bb Mon Sep 17 00:00:00 2001 From: Jeremy Postlethwaite Date: Mon, 29 Apr 2024 21:54:22 -0700 Subject: [PATCH] GH-14 --- .../2020_01_02_100001_create_matrix_projects_table.php | 1 - tests/Feature/Http/Controllers/ProjectTestCase.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/database/migrations-matrix-uuid/2020_01_02_100001_create_matrix_projects_table.php b/database/migrations-matrix-uuid/2020_01_02_100001_create_matrix_projects_table.php index ed6b18e..777ce3b 100644 --- a/database/migrations-matrix-uuid/2020_01_02_100001_create_matrix_projects_table.php +++ b/database/migrations-matrix-uuid/2020_01_02_100001_create_matrix_projects_table.php @@ -107,7 +107,6 @@ public function up(): void $table->boolean('closed')->default(0); $table->boolean('completed')->default(0); $table->boolean('cron')->default(0)->index(); - $table->boolean('duplicate')->default(0); $table->boolean('fixed')->default(0); $table->boolean('flagged')->default(0); $table->boolean('internal')->default(0); diff --git a/tests/Feature/Http/Controllers/ProjectTestCase.php b/tests/Feature/Http/Controllers/ProjectTestCase.php index 5ae5d2c..03c0af3 100644 --- a/tests/Feature/Http/Controllers/ProjectTestCase.php +++ b/tests/Feature/Http/Controllers/ProjectTestCase.php @@ -46,6 +46,7 @@ class ProjectTestCase extends TestCase 'board_id', 'epic_id', 'flow_id', + 'matrix_id', 'milestone_id', 'note_id', 'release_id', @@ -66,7 +67,6 @@ class ProjectTestCase extends TestCase 'canceled_at', 'closed_at', 'embargo_at', - 'fixed_at', 'postponed_at', 'published_at', 'released_at', @@ -88,7 +88,7 @@ class ProjectTestCase extends TestCase 'canceled', 'closed', 'completed', - 'duplicate', + 'cron', 'fixed', 'flagged', 'internal',