Skip to content
Snippets Groups Projects

Resolve "Support import from MySQL"

Merged Tom Teichler requested to merge 4-support-import-from-mysql into master
Compare and
29 files
+ 5851
3724
Compare changes
  • Side-by-side
  • Inline
Files
29
from django.core.management.base import BaseCommand
from ...tasks import untis_import_mysql
class Command(BaseCommand):
def handle(self, *args, **options):
untis_import_mysql()
Loading