15 lines
274 B
PHP
15 lines
274 B
PHP
|
|
<?php namespace October\Core\Tests\Concerns;
|
||
|
|
|
||
|
|
trait RunsMigrations
|
||
|
|
{
|
||
|
|
protected function runOctoberUpCommand()
|
||
|
|
{
|
||
|
|
\Artisan::call('october:up');
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function runOctoberDownCommand()
|
||
|
|
{
|
||
|
|
\Artisan::call('october:down --force');
|
||
|
|
}
|
||
|
|
}
|