Merge pull request #32 from doraemonxxx/master

fix: cannot drop table personal_access_token because of typo
master
Hasin Hayder 3 months ago committed by GitHub
commit 7888f42117
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