我有许多迁移和播种器文件要运行,虽然我需要运行所有文件,但目前我需要跳过一个迁移和播种器。
我如何从 laravel 迁移和 db seeder 命令中跳过一个文件。
我不想从迁移或种子文件夹中删除文件以跳过该文件。
我有许多迁移和播种器文件要运行,虽然我需要运行所有文件,但目前我需要跳过一个迁移和播种器。
我如何从 laravel 迁移和 db seeder 命令中跳过一个文件。
我不想从迁移或种子文件夹中删除文件以跳过该文件。
Laravel 没有给你一个默认的方法来做到这一点。但是,您可以创建自己的控制台命令和播种器来实现它。
假设您有这个默认DatabaseSeeder
类:
class DatabaseSeeder extends Seeder
{
public function run()
{
$this->call(ExampleTableSeeder::class);
$this->call(UserSamplesTableSeeder::class);
}
}
目标是创建一个覆盖“db:seed”的新命令,并将一个新参数“except”参数传递给DatabaseSeeder
类。
这是我在 Laravel 5.2 实例上创建并尝试过的最终代码:
命令,放入 app/Console/Commands,别忘了更新你的 Kernel.php:
namespace App\Console\Commands;
use Illuminate\Console\Command;
class SeedExcept extends Command
{
protected $signature = 'db:seed-except {--except=class name to jump}';
protected $description = 'Seed all except one';
public function handle()
{
$except = $this->option('except');
$seeder = new \DatabaseSeeder($except);
$seeder->run();
}
}
数据库播种机
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
protected $except;
public function __construct($except = null) {
$this->except = $except;
}
public function call($class)
{
if ($class != $this->except)
{
echo "calling $class \n";
//parent::call($class); // uncomment this to execute after tests
}
}
public function run()
{
$this->call(ExampleTableSeeder::class);
$this->call(UserSamplesTableSeeder::class);
}
}
在代码中,您会发现我注释了调用种子的行并添加了一个回显以进行测试。
执行此命令:
php artisan db:seed-except
会给你:
调用 ExampleTableSeeder
调用 UserSamplesTableSeeder
但是,添加“除外”:
php artisan db:seed-except --except=ExampleTableSeeder
会给你
调用 UserSamplesTableSeeder
这可以覆盖类的默认call
方法DatabaseSeeder
并仅在类的名称不在 $except 变量中时才调用父类。该变量由SeedExcept
自定义命令填充。
关于迁移,事情是相似的,但有点困难。
我现在不能给你测试过的代码,但问题是:
migrate-except
覆盖MigrateCommand
类的命令(命名空间 Illuminate\Database\Console\Migrations,位于 vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php)。MigrateCommand
获取一个Migrator
对象(命名空间 Illuminate\Database\Migrations,路径 vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php)。该类Migrator
拥有读取文件夹内所有迁移并执行它的逻辑。这个逻辑在run()
方法里面Migrator
例如,创建一个子类MyMigrator
,并重写该run()
方法以跳过使用特殊选项传递的文件__construct()
你的方法MigrateExceptCommand
并传递你的MyMigrator
:public function __construct(MyMigrator $migrator)
如果我有时间,我会在赏金结束之前添加示例代码
按照承诺进行编辑 ,这是迁移的示例:
MyMigrator 类,扩展了 Migrator 并包含跳过文件的逻辑:
namespace App\Helpers;
use Illuminate\Database\Migrations\Migrator;
class MyMigrator extends Migrator
{
public $except = null;
// run() method copied from it's superclass adding the skip logic
public function run($path, array $options = [])
{
$this->notes = [];
$files = $this->getMigrationFiles($path);
// skip logic
// remove file from array
if (isset($this->except))
{
$index = array_search($this->except,$files);
if($index !== FALSE){
unset($files[$index]);
}
}
var_dump($files); // debug
$ran = $this->repository->getRan();
$migrations = array_diff($files, $ran);
$this->requireFiles($path, $migrations);
//$this->runMigrationList($migrations, $options); // commented for debugging purposes
}
}
MigrateExcept 自定义命令
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Database\Console\Migrations\MigrateCommand;
use App\Helpers\MyMigrator;
use Illuminate\Database\Migrations\Migrator;
use Symfony\Component\Console\Input\InputOption;
class MigrateExcept extends MigrateCommand
{
protected $name = 'migrate-except';
public function __construct(MyMigrator $migrator)
{
parent::__construct($migrator);
}
public function fire()
{
// set the "except" param, containing the name of the file to skip, on our custom migrator
$this->migrator->except = $this->option('except');
parent::fire();
}
// add the 'except' option to the command
protected function getOptions()
{
return [
['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
['force', null, InputOption::VALUE_NONE, 'Force the operation to run when in production.'],
['path', null, InputOption::VALUE_OPTIONAL, 'The path of migrations files to be executed.'],
['pretend', null, InputOption::VALUE_NONE, 'Dump the SQL queries that would be run.'],
['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'],
['step', null, InputOption::VALUE_NONE, 'Force the migrations to be run so they can be rolled back individually.'],
['except', null, InputOption::VALUE_OPTIONAL, 'Files to jump'],
];
}
}
最后,您需要将其添加到服务提供者以允许 Laravel IoC 解决依赖关系
namespace App\Providers;
use App\Helpers\MyMigrator;
use App\Console\Commands\MigrateExcept;
class CustomServiceProvider extends ServiceProvider
{
public function boot()
{
parent::boot($events);
$this->app->bind('Illuminate\Database\Migrations\MigrationRepositoryInterface', 'migration.repository');
$this->app->bind('Illuminate\Database\ConnectionResolverInterface', 'Illuminate\Database\DatabaseManager');
$this->app->singleton('MyMigrator', function ($app) {
$repository = $app['migration.repository'];
return new MyMigrator($repository, $app['db'], $app['files']);
});
}
}
不要忘记添加Commands\MigrateExcept::class
Kernel.php
现在,如果你执行
php artisan migrate-except
你有:
array(70) {
[0] =>
string(43) "2014_04_24_110151_create_oauth_scopes_table"
[1] =>
string(43) "2014_04_24_110304_create_oauth_grants_table"
[2] =>
string(49) "2014_04_24_110403_create_oauth_grant_scopes_table"
...
但添加了 except 参数:
php artisan migrate-except --except=2014_04_24_110151_create_oauth_scopes_table
array(69) {
[1] =>
string(43) "2014_04_24_110304_create_oauth_grants_table"
[2] =>
string(49) "2014_04_24_110403_create_oauth_grant_scopes_table"
所以,回顾一下:
MigrateExcept
类,扩展 MigrateCommandMyMigrator
,扩展标准的行为Migrator
MyMigrator
类MyMigrator
覆盖run()
方法Migrator
并跳过传递的迁移该代码经过测试,因此它应该在 Laravel 5.2 上正常工作(希望剪切和粘贴工作正常:-) ...如果有人有任何疑问,请发表评论
跳过种子很简单,迁移没那么多。要跳过种子,请从 DatabaseSeeder 类中删除以下内容。
$this->call(TableYouDontWantToSeed::class);
对于迁移,您可以通过三种方式进行迁移:
UsersTableMigration.dud
.希望这可以帮助
我在我的项目中也遇到了同样的问题,但经过长时间的研发浪费后,我发现 Laravel 没有提供任何通过迁移和播种来做到这一点的方法,但你有两种方法可以做到这一点。
1)只需将它们放入不同的文件夹即可节省大量时间。理论上,您可以创建自己的 artisan 命令来执行您想要的操作,或者通过创建目录、移动文件和运行 php artisan migrate 来欺骗它。
对于播种机,只需制作一个播种机并调用您想要从中运行的其他播种机。然后明确说明您要运行的播种机。尝试 php artisandb:seed --help
以获取更多详细信息。
2)您可以手动创建一个表(与在您的数据库中创建的迁移表具有相同的名称)并像这样插入迁移值
insert into migrations(migration, batch) values('2015_12_08_134409_create_tables_script',1);
所以 migrate 命令不会创建迁移表中已经存在的表。
如果您只想省略(但保留)迁移和播种器:
.php
通过删除扩展名重命名您的迁移:mv your_migration_file.php your_migration_file
DatabaseSeeder.php
并用您不需要的播种机注释掉行://$this->call('YourSeeder');
。php artisan migrate --seed
在 db 上执行下面的 sql 查询(注意,应该有没有扩展名的迁移文件名)(这将防止 artisan migrate 将来执行 your_migration_file):
插入migrations
( migration
, batch
) 值 ( your_migration_file
, 1)
重命名您的迁移文件:mv your_migration_file your_migration_file.php
DatabaseSeeder.php
你完成了。现在,当您运行php artisan migrate
任何迁移时,应该执行任何迁移(如果您添加一些新的迁移文件,则新迁移除外)。
只是一个想法评论播种器和架构。这就是我猜的方式
//$this->call(HvAccountsSeeder::class);
//Schema::create('users', function (Blueprint $table) {
// $table->increments('id');
// $table->string('name');
// $table->string('email')->unique();
// $table->string('password');
// $table->rememberToken();
// $table->timestamps();
// });
// Schema::drop('users');
为了直接回答你的问题,Laravel 目前没有办法做到这一点。
如果我理解正确,我假设您正在寻找一种方法来临时禁用/跳过默认 DatabaseSeeder 中的特定类。
您可以轻松创建自己的命令,该命令将接受诸如模型/表名称之类的字符串,并尝试为该特定表运行迁移和种子。您只需要以下内容:
public function handle(){ //fire for Laravel 4.*
$tables = explode(',', $this->option('tables'));//default []
$skip = explode(',', $this->option('skip'));//default []
$migrations = glob("*table*.php");//get all migrations
foreach($migrations as $migrate){
//if tables argument is set, check to see if part of tables
//if file name not like any in skip.. you get the point