This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
python-entrouvert/entrouvert/djommon/multitenant/management/commands/create_schemas.py

20 lines
698 B
Python

from django.core.management.base import BaseCommand
from entrouvert.djommon.multitenant.middleware import TenantMiddleware
from django.db import connection
class Command(BaseCommand):
help = "Create schemas for all declared tenants"
def handle(self, *args, **options):
verbosity = int(options.get('verbosity'))
connection.set_schema_to_public()
all_tenants = TenantMiddleware.get_tenants()
for tenant in all_tenants:
if verbosity >= 1:
print
print self.style.NOTICE("=== Creating schema ") \
+ self.style.SQL_TABLE(tenant.schema_name)
tenant.create_schema(check_if_exists=True)