PHPackages                             noouh/laravel-multiple-migrations - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. noouh/laravel-multiple-migrations

ActiveLibrary[Database &amp; ORM](/categories/database)

noouh/laravel-multiple-migrations
=================================

A Laravel package to run migrations from multiple paths.

v0.1(1y ago)08MITPHPPHP &gt;=7.3

Since Aug 1Pushed 1y ago1 watchersCompare

[ Source](https://github.com/mohamedhekal/laravel-multiple-migrations)[ Packagist](https://packagist.org/packages/noouh/laravel-multiple-migrations)[ RSS](/packages/noouh-laravel-multiple-migrations/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Laravel Multiple Migrations
===========================

[](#laravel-multiple-migrations)

A Laravel package to run migrations from multiple paths.

Installation
------------

[](#installation)

```
composer require noouh/laravel-multiple-migrations
```

Usage
-----

[](#usage)

```
php artisan migrate:multiple database/migrations
```

License
-------

[](#license)

MIT

To ensure that the command skips any migrations that fail or if the table already exists, you can wrap the migration call in a try-catch block. Here's how you can modify the command class to handle this:

### Updated Command Class

[](#updated-command-class)

```
