mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -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->string('token', 64)->unique();
|
||||||
$table->text('abilities')->nullable();
|
$table->text('abilities')->nullable();
|
||||||
$table->timestamp('last_used_at')->nullable();
|
$table->timestamp('last_used_at')->nullable();
|
||||||
$table->timestamp('expires_at')->nullable()->after('last_used_at');
|
$table->timestamp('expires_at')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue