mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 07:32:31 -05:00
Revert change to the create_personal_access_tokens_table expires_at column
This commit is contained in:
parent
6b111a301a
commit
a2b3c07613
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,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()->after('last_used_at');
|
||||
$table->timestamp('expires_at')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue