|
0
|
1 |
from django.core.management.base import AppCommand, CommandError |
|
|
2 |
|
|
|
3 |
class Command(AppCommand): |
|
|
4 |
help = "RENAMED: see 'sqlcustom'" |
|
|
5 |
|
|
|
6 |
def handle(self, *apps, **options): |
|
|
7 |
raise CommandError("This command has been renamed. Use the 'sqlcustom' command instead.") |