File tree 3 files changed +2
-3
lines changed 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ public function createCategory()
152
152
| status | ` string ` | ` open ` |
153
153
| is_resolved | ` boolean ` | ` false ` |
154
154
| is_locked | ` boolean ` | ` false ` |
155
- | assigned_to_user_id | ` integer ` | ` NULL ` |
155
+ | assigned_to | ` integer ` | ` NULL ` |
156
156
| created_at | ` timestamp ` | ` NULL ` |
157
157
| updated_at | ` timestamp ` | ` NULL ` |
158
158
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ return new class extends Migration
22
22
$table->string('status')->default('open');
23
23
$table->boolean('is_resolved')->default(false);
24
24
$table->boolean('is_locked')->default(false);
25
- $table->foreignId('assigned_to_user_id')->nullable();
26
25
$table->timestamps();
27
26
});
28
27
}
Original file line number Diff line number Diff line change 231
231
$ this ->assertTrue ($ lockedTicket ->isLocked ());
232
232
});
233
233
234
- it ('ensures ticket methods as chainable ' , function () {
234
+ it ('ensures ticket methods are chainable ' , function () {
235
235
$ ticket = Ticket::factory ()->create ([
236
236
'status ' => 'open ' ,
237
237
'is_locked ' => false ,
You can’t perform that action at this time.
0 commit comments