From c1206294a156cf2722aa246913376f8678814340 Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Thu, 5 Feb 2015 15:53:07 +0100 Subject: [PATCH] renamed create_schema to create_schemas --- .../management/commands/{create_schema.py => create_schemas.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename entrouvert/djommon/multitenant/management/commands/{create_schema.py => create_schemas.py} (93%) diff --git a/entrouvert/djommon/multitenant/management/commands/create_schema.py b/entrouvert/djommon/multitenant/management/commands/create_schemas.py similarity index 93% rename from entrouvert/djommon/multitenant/management/commands/create_schema.py rename to entrouvert/djommon/multitenant/management/commands/create_schemas.py index 46cba7f..0b243f5 100644 --- a/entrouvert/djommon/multitenant/management/commands/create_schema.py +++ b/entrouvert/djommon/multitenant/management/commands/create_schemas.py @@ -3,7 +3,7 @@ from entrouvert.djommon.multitenant.middleware import TenantMiddleware from django.db import connection class Command(BaseCommand): - help = "Create schemas" + help = "Create schemas for all declared tenants" def handle(self, *args, **options): verbosity = int(options.get('verbosity'))