Skip to content

Commit 7888f42

Browse files
authored
Merge pull request #32 from doraemonxxx/master
fix: cannot drop table personal_access_token because of typo
2 parents ab0be22 + 7f9c9cb commit 7888f42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2024_01_07_095037_add_expires_at_to_personal_access_token_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up() {
2222
* @return void
2323
*/
2424
public function down() {
25-
Schema::table('personal_access_token', function (Blueprint $table) {
25+
Schema::table('personal_access_tokens', function (Blueprint $table) {
2626
$table->dropColumn('expires_at');
2727
});
2828
}

0 commit comments

Comments
 (0)