/var/www/hkosl.com/imusiccircle/webadmin/libraies/illuminate/database/Illuminate/Database/Console/Migrations/MigrateCommand.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php namespace Illuminate\Database\Console\Migrations;

use 
Illuminate\Database\Migrations\Migrator;
use 
Symfony\Component\Console\Input\InputOption;

class 
MigrateCommand extends BaseCommand {

    
/**
     * The console command name.
     *
     * @var string
     */
    
protected $name 'migrate';

    
/**
     * The console command description.
     *
     * @var string
     */
    
protected $description 'Run the database migrations';

    
/**
     * The migrator instance.
     *
     * @var \Illuminate\Database\Migrations\Migrator
     */
    
protected $migrator;

    
/**
     * The path to the packages directory (vendor).
     */
    
protected $packagePath;

    
/**
     * Create a new migration command instance.
     *
     * @param  \Illuminate\Database\Migrations\Migrator  $migrator
     * @param  string  $packagePath
     * @return void
     */
    
public function __construct(Migrator $migrator$packagePath)
    {
        
parent::__construct();

        
$this->migrator $migrator;
        
$this->packagePath $packagePath;
    }

    
/**
     * Execute the console command.
     *
     * @return void
     */
    
public function fire()
    {
        
$this->prepareDatabase();

        
// The pretend option can be used for "simulating" the migration and grabbing
        // the SQL queries that would fire if the migration were to be run against
        // a database for real, which is helpful for double checking migrations.
        
$pretend $this->input->getOption('pretend');

        
$path $this->getMigrationPath();

        
$this->migrator->run($path$pretend);

        
// Once the migrator has run we will grab the note output and send it out to
        // the console screen, since the migrator itself functions without having
        // any instances of the OutputInterface contract passed into the class.
        
foreach ($this->migrator->getNotes() as $note)
        {
            
$this->output->writeln($note);
        }

        
// Finally, if the "seed" option has been given, we will re-run the database
        // seed task to re-populate the database, which is convenient when adding
        // a migration and a seed at the same time, as it is only this command.
        
if ($this->input->getOption('seed'))
        {
            
$this->call('db:seed');
        }
    }

    
/**
     * Prepare the migration database for running.
     *
     * @return void
     */
    
protected function prepareDatabase()
    {
        
$this->migrator->setConnection($this->input->getOption('database'));

        if ( ! 
$this->migrator->repositoryExists())
        {
            
$options = array('--database' => $this->input->getOption('database'));

            
$this->call('migrate:install'$options);
        }
    }

    
/**
     * Get the console command options.
     *
     * @return array
     */
    
protected function getOptions()
    {
        return array(
            array(
'bench'nullInputOption::VALUE_OPTIONAL'The name of the workbench to migrate.'null),

            array(
'database'nullInputOption::VALUE_OPTIONAL'The database connection to use.'),

            array(
'path'nullInputOption::VALUE_OPTIONAL'The path to migration files.'null),

            array(
'package'nullInputOption::VALUE_OPTIONAL'The package to migrate.'null),

            array(
'pretend'nullInputOption::VALUE_NONE'Dump the SQL queries that would be run.'),

            array(
'seed'nullInputOption::VALUE_NONE'Indicates if the seed task should be re-run.'),
        );
    }

}