ORIENT/tests/Concerns/RunsMigrations.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');
}
}