|
@ -1,3 +1,4 @@ |
|
|
|
|
|
from django.core import management |
|
|
from django.core.management.base import BaseCommand |
|
|
from django.core.management.base import BaseCommand |
|
|
|
|
|
|
|
|
from sapl.legacy import migration |
|
|
from sapl.legacy import migration |
|
@ -17,4 +18,5 @@ class Command(BaseCommand): |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
def handle(self, *args, **options): |
|
|
def handle(self, *args, **options): |
|
|
|
|
|
management.call_command('migrate') |
|
|
migration.migrate(interativo=not options['force']) |
|
|
migration.migrate(interativo=not options['force']) |
|
|