git-svn-id: http://code.djangoproject.com/svn/django/trunk@5898 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
223 B
Python
10 lines
223 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
class Command(BaseCommand):
|
|
help = "Validates all installed models."
|
|
|
|
requires_model_validation = False
|
|
|
|
def handle(self, **options):
|
|
self.validate()
|