Skip to content

Commit 94ae518

Browse files
committed
remove column
1 parent 90770c1 commit 94ae518

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

database/migrations/create_tickets_table.php.stub

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

tests/Feature/TicketTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
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,

0 commit comments

Comments
 (0)