PHP code example of noouh / laravel-multiple-migrations
1. Go to this page and download the library: Download noouh/laravel-multiple-migrations library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
noouh / laravel-multiple-migrations example snippets
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;
use Exception;
class MigrateMultiplePaths extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'migrate:multiple {paths*}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Run migrations from multiple paths';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$paths = $this->argument('paths');
foreach ($paths as $path) {
$this->info("Running migrations in: $path");
$migrationFiles = $this->getMigrationFiles($path);
foreach ($migrationFiles as $file) {
$this->info("Running migration: $file");
try {
$this->call('migrate', [
'--path' => $file,
]);
} catch (Exception $e) {
$this->error("Failed to run migration: $file. Error: " . $e->getMessage());
}
}
}
return 0;
}
/**
* Get all migration files from the specified directory.
*
* @param string $path
* @return array
*/
protected function getMigrationFiles($path)
{
$files = [];
if (File::isDirectory($path)) {
$files = File::allFiles($path);
}
return array_map(function ($file) use ($path) {
return $path . '/' . $file->getFilename();
}, $files);
}
}