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
|
<?php namespace Illuminate\Database\Console\Migrations;
use Illuminate\Console\Command;
class BaseCommand extends Command {
/** * Get the path to the migration directory. * * @return string */ protected function getMigrationPath() { $path = $this->input->getOption('path');
// First, we will check to see if a path option has been defined. If it has // we will use the path relative to the root of this installation folder // so that migrations may be run for any path within the applications. if ( ! is_null($path)) { return $this->laravel['path.base'].'/'.$path; }
$package = $this->input->getOption('package');
// If the package is in the list of migration paths we received we will put // the migrations in that path. Otherwise, we will assume the package is // is in the package directories and will place them in that location. if ( ! is_null($package)) { return $this->packagePath.'/'.$package.'/src/migrations'; }
$bench = $this->input->getOption('bench');
// Finally we will check for the workbench option, which is a shortcut into // specifying the full path for a "workbench" project. Workbenches allow // developers to develop packages along side a "standard" app install. if ( ! is_null($bench)) { $path = "/workbench/{$bench}/src/migrations";
return $this->laravel['path.base'].$path; }
return $this->laravel['path'].'/database/migrations'; }
}
|