mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 22:24:03 +00:00
25 lines
611 B
PHP
25 lines
611 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use Stancl\Tenancy\Concerns\HasTenantOptions;
|
|
use Stancl\Tenancy\Jobs\CreatePostgresUserForTenant;
|
|
|
|
class CreatePostgresUserForTenants extends Command
|
|
{
|
|
use HasTenantOptions;
|
|
|
|
protected $signature = 'tenants:create-postgres-user {--tenants=* : The tenant(s) to run the command for. Default: all}';
|
|
|
|
public function handle(): int
|
|
{
|
|
foreach ($this->getTenants() as $tenant) {
|
|
CreatePostgresUserForTenant::dispatch($tenant);
|
|
}
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|