fix: cannot drop table personal_access_token because of typo

pull/32/head
No name 3 months ago committed by GitHub
parent ab0be2273c
commit 7f9c9cb3e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -22,7 +22,7 @@ return new class extends Migration {
* @return void
*/
public function down() {
Schema::table('personal_access_token', function (Blueprint $table) {
Schema::table('personal_access_tokens', function (Blueprint $table) {
$table->dropColumn('expires_at');
});
}

Loading…
Cancel
Save