Update laravel/sanctum version (#5957)

This commit is contained in:
suyar
2022-07-29 21:01:11 +08:00
committed by GitHub
parent 944c87da74
commit 6e1103180b
2 changed files with 2 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ return new class extends Migration
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}