joshbrw/laravel-module-migrations

Adds functionality for running migrations from other modules.
3,673
Install
composer require joshbrw/laravel-module-migrations
Latest Version:v2.0.0
PHP:>=7.2
License:MIT
Last Updated:Mar 28, 2019
Links: GitHub  ·  Packagist
Maintainer: joshbrw

Laravel Module Migrations

Provides a Trait that can be used on migrations with Laravel Modules to ensure that a table from another Module exists. This solves any cross-module table dependency issues.

Installation

  1. Publish the config to config/module-migrations.php by running:

    php artisan vendor:publish --provider="Joshbrw\LaravelModuleMigrations\LaravelModuleMigrationsServiceProvider"

  2. Write your table definitions within this config file. This config file should define the tables that can be created, the module that their migrations exist in and any migrations that should be ran to create this table.

  3. In any migrations that require tables created in other modules, use Joshbrw\LaravelModuleMigrations\Traits\ModuleMigrator.

  4. Use $this->ensureTableExists('tableName'); wherever you want the tables to be created.

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

612,604,198 9,704
laravel/framework

The Laravel Framework.

554,918,666 34,821
laravel/tinker

Powerful REPL for the Laravel framework.

465,424,253 7,437