Skip to content

Commit dbd3e3d

Browse files
committed
Add expires_at field to personal_access_tokens table
1 parent 956692b commit dbd3e3d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function up()
2020
$table->string('name');
2121
$table->string('token', 64)->unique();
2222
$table->text('abilities')->nullable();
23+
$table->timestamp('expires_at')->nullable();
2324
$table->timestamp('last_used_at')->nullable();
2425

2526
$table->timestamps();

0 commit comments

Comments
 (0)