18 lines
308 B
PHP
18 lines
308 B
PHP
|
<?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()
|
||
|
{
|
||
|
return $this->laravel->databasePath().'/migrations';
|
||
|
}
|
||
|
|
||
|
}
|