Skip to content

Commit

Permalink
Add expires_at column to personal access token.
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-webkul committed Jun 24, 2024
1 parent 8eedf6c commit cbe9f16
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public function up()
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}
Expand Down

0 comments on commit cbe9f16

Please sign in to comment.