Skip to content

Commit e4c09e6

Browse files
authored
refactor: use text for token column (#570)
Co-authored-by: Ray Anthony <=>
1 parent 6e1612e commit e4c09e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function up(): void
1414
Schema::create('personal_access_tokens', function (Blueprint $table) {
1515
$table->id();
1616
$table->morphs('tokenable');
17-
$table->string('name');
17+
$table->text('name');
1818
$table->string('token', 64)->unique();
1919
$table->text('abilities')->nullable();
2020
$table->timestamp('last_used_at')->nullable();

0 commit comments

Comments
 (0)