18 lines
308 B
PHP
Executable File
18 lines
308 B
PHP
Executable File
<?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';
|
|
}
|
|
|
|
}
|