Skip to content

Commit

Permalink
fix: cannot drop table personal_access_token because of typo
Browse files Browse the repository at this point in the history
  • Loading branch information
doraemonxxx authored Jun 29, 2024
1 parent ab0be22 commit 7f9c9cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function up() {
* @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');
});
}
Expand Down

0 comments on commit 7f9c9cb

Please sign in to comment.