mirror of https://github.com/interlegis/sapl.git
Luciano Almeida
8 years ago
3 changed files with 20 additions and 2 deletions
@ -0,0 +1,12 @@ |
|||||
|
from django.core.management.base import BaseCommand |
||||
|
|
||||
|
from sapl.legacy.migration import recria_constraints |
||||
|
|
||||
|
|
||||
|
class Command(BaseCommand): |
||||
|
|
||||
|
help = (u'Recria constraints do PostgreSQL excluidas durante ' |
||||
|
'migração de dados') |
||||
|
|
||||
|
def handle(self, *args, **options): |
||||
|
recria_constraints() |
Loading…
Reference in new issue