Skip to content

Commit f6511d4

Browse files
committedApr 5, 2017
add migrate:fresh command
1 parent d910bc8 commit f6511d4

File tree

2 files changed

+124
-0
lines changed

2 files changed

+124
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<?php
2+
3+
namespace Illuminate\Database\Console\Migrations;
4+
5+
use Illuminate\Console\Command;
6+
use Illuminate\Console\ConfirmableTrait;
7+
use Symfony\Component\Console\Input\InputOption;
8+
9+
class FreshCommand extends Command
10+
{
11+
use ConfirmableTrait;
12+
13+
/**
14+
* The console command name.
15+
*
16+
* @var string
17+
*/
18+
protected $name = 'migrate:fresh';
19+
20+
/**
21+
* The console command description.
22+
*
23+
* @var string
24+
*/
25+
protected $description = 'Drop all tables and re-run all migrations';
26+
27+
/**
28+
* Execute the console command.
29+
*
30+
* @return void
31+
*/
32+
public function fire()
33+
{
34+
if (! $this->confirmToProceed()) {
35+
return;
36+
}
37+
38+
$this->dropAllTables(
39+
$database = $this->input->getOption('database')
40+
);
41+
42+
$this->call('migrate', [
43+
'--database' => $database,
44+
'--path' => $this->input->getOption('path'),
45+
'--force' => $this->input->getOption('force'),
46+
]);
47+
48+
if ($this->needsSeeding()) {
49+
$this->runSeeder($database);
50+
}
51+
}
52+
53+
/**
54+
* Drop all of the database tables.
55+
*
56+
* @param string $database
57+
* @return void
58+
*/
59+
protected function dropAllTables($database)
60+
{
61+
$this->laravel['db']->connection($database)
62+
->getSchemaBuilder()
63+
->dropAllTables();
64+
}
65+
66+
/**
67+
* Determine if the developer has requested database seeding.
68+
*
69+
* @return bool
70+
*/
71+
protected function needsSeeding()
72+
{
73+
return $this->option('seed') || $this->option('seeder');
74+
}
75+
76+
/**
77+
* Run the database seeder command.
78+
*
79+
* @param string $database
80+
* @return void
81+
*/
82+
protected function runSeeder($database)
83+
{
84+
$this->call('db:seed', [
85+
'--database' => $database,
86+
'--class' => $this->option('seeder') ?: 'DatabaseSeeder',
87+
'--force' => $this->option('force'),
88+
]);
89+
}
90+
91+
/**
92+
* Get the console command options.
93+
*
94+
* @return array
95+
*/
96+
protected function getOptions()
97+
{
98+
return [
99+
['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
100+
101+
['force', null, InputOption::VALUE_NONE, 'Force the operation to run when in production.'],
102+
103+
['path', null, InputOption::VALUE_OPTIONAL, 'The path of migrations files to be executed.'],
104+
105+
['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'],
106+
107+
['seeder', null, InputOption::VALUE_OPTIONAL, 'The class name of the root seeder.'],
108+
];
109+
}
110+
}

‎src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php

+14
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
use Illuminate\Queue\Console\FlushFailedCommand as FlushFailedQueueCommand;
5757
use Illuminate\Queue\Console\ForgetFailedCommand as ForgetFailedQueueCommand;
5858
use Illuminate\Database\Console\Migrations\ResetCommand as MigrateResetCommand;
59+
use Illuminate\Database\Console\Migrations\FreshCommand as MigrateFreshCommand;
5960
use Illuminate\Database\Console\Migrations\StatusCommand as MigrateStatusCommand;
6061
use Illuminate\Database\Console\Migrations\InstallCommand as MigrateInstallCommand;
6162
use Illuminate\Database\Console\Migrations\RefreshCommand as MigrateRefreshCommand;
@@ -86,6 +87,7 @@ class ArtisanServiceProvider extends ServiceProvider
8687
'Environment' => 'command.environment',
8788
'KeyGenerate' => 'command.key.generate',
8889
'Migrate' => 'command.migrate',
90+
'MigrateFresh' => 'command.migrate.fresh',
8991
'MigrateInstall' => 'command.migrate.install',
9092
'MigrateRefresh' => 'command.migrate.refresh',
9193
'MigrateReset' => 'command.migrate.reset',
@@ -422,6 +424,18 @@ protected function registerMigrateCommand()
422424
});
423425
}
424426

427+
/**
428+
* Register the command.
429+
*
430+
* @return void
431+
*/
432+
protected function registerMigrateFreshCommand()
433+
{
434+
$this->app->singleton('command.migrate.fresh', function () {
435+
return new MigrateFreshCommand;
436+
});
437+
}
438+
425439
/**
426440
* Register the command.
427441
*

0 commit comments

Comments
 (0)
Please sign in to comment.