Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gammamatrix committed Apr 30, 2024
1 parent 8f743b6 commit 9240352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/Http/Controllers/ProjectTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class ProjectTestCase extends TestCase
'board_id',
'epic_id',
'flow_id',
'matrix_id',
'milestone_id',
'note_id',
'release_id',
Expand All @@ -66,7 +67,6 @@ class ProjectTestCase extends TestCase
'canceled_at',
'closed_at',
'embargo_at',
'fixed_at',
'postponed_at',
'published_at',
'released_at',
Expand All @@ -88,7 +88,7 @@ class ProjectTestCase extends TestCase
'canceled',
'closed',
'completed',
'duplicate',
'cron',
'fixed',
'flagged',
'internal',
Expand Down

0 comments on commit 9240352

Please sign in to comment.