Skip to content

Commit

Permalink
fixed module:migrate-rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Mar 24, 2024
1 parent 6d5c5da commit ac1d127
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All Notable changes to `laravel-modules` will be documented in this file.

## Next

## 11.0.2 - 2024-03-24

## Fixed

- [@enterprime](https://github.com/enterprime) fixed module:migrate-rollback command

## 11.0.1 - 2024-03-23

## Added

- [@alissn](https://github.com/alissn) add RouteServiceProvider Configuration in Generator
Expand Down
2 changes: 1 addition & 1 deletion src/Migrations/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function requireFiles(array $files)
*/
public function table()
{
return $this->laravel['db']->connection($this->database ?: null)->table(config('database.migrations'));
return $this->laravel['db']->connection($this->database ?: null)->table(config('database.migrations.table'));
}

/**
Expand Down

0 comments on commit ac1d127

Please sign in to comment.