1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:14:03 +00:00
This commit is contained in:
Samuel Štancl 2019-08-10 11:01:41 +02:00
commit c38dd1bb9a
8 changed files with 196 additions and 53 deletions

View file

@ -2,6 +2,7 @@
namespace Stancl\Tenancy;
use Stancl\Tenancy\Commands\Run;
use Stancl\Tenancy\Commands\Seed;
use Illuminate\Cache\CacheManager;
use Stancl\Tenancy\Commands\Migrate;
@ -24,9 +25,10 @@ class TenancyServiceProvider extends ServiceProvider
{
if ($this->app->runningInConsole()) {
$this->commands([
Run::class,
Seed::class,
Migrate::class,
Rollback::class,
Seed::class,
TenantList::class,
]);
}