File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ public function createCategory()
152152| status | ` string ` | ` open ` |
153153| is_resolved | ` boolean ` | ` false ` |
154154| is_locked | ` boolean ` | ` false ` |
155- | assigned_to_user_id | ` integer ` | ` NULL ` |
155+ | assigned_to | ` integer ` | ` NULL ` |
156156| created_at | ` timestamp ` | ` NULL ` |
157157| updated_at | ` timestamp ` | ` NULL ` |
158158
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ return new class extends Migration
2222 $table->string('status')->default('open');
2323 $table->boolean('is_resolved')->default(false);
2424 $table->boolean('is_locked')->default(false);
25- $table->foreignId('assigned_to_user_id')->nullable();
2625 $table->timestamps();
2726 });
2827 }
Original file line number Diff line number Diff line change 231231 $ this ->assertTrue ($ lockedTicket ->isLocked ());
232232});
233233
234- it ('ensures ticket methods as chainable ' , function () {
234+ it ('ensures ticket methods are chainable ' , function () {
235235 $ ticket = Ticket::factory ()->create ([
236236 'status ' => 'open ' ,
237237 'is_locked ' => false ,
You can’t perform that action at this time.
0 commit comments