Skip to content

Commit

Permalink
Merge pull request #32 from doraemonxxx/master
Browse files Browse the repository at this point in the history
fix: cannot drop table personal_access_token because of typo
  • Loading branch information
hasinhayder authored Jun 30, 2024
2 parents ab0be22 + 7f9c9cb commit 7888f42
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 7888f42

Please sign in to comment.