Revert change to the create_personal_access_tokens_table expires_at column

This commit is contained in:
Kevin MacMartin 2023-03-13 17:35:21 -04:00
parent 6b111a301a
commit a2b3c07613

View file

@ -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();
}); });
} }