Exemplo n.º 1
0
    def handle(self, *args, **options):
        settings = options.get('settings')

        file_to_upload = options.get('file')
        if not settings:
            raise CommandError("settings parameter not provided")
        self.stdout.write("stating to restore")
        utils.restore_db(file_to_upload)
        self.stdout.write('Done restoring db\n')
Exemplo n.º 2
0
    def handle(self, *args, **options):
        settings = options.get('settings')

        file_to_upload = options.get('file')
        if not settings:
            raise CommandError("settings parameter not provided")
        self.stdout.write("stating to restore")
        utils.restore_db(file_to_upload)
        self.stdout.write('Done restoring db\n')
Exemplo n.º 3
0
def restore_db():
    utils.restore_db()
Exemplo n.º 4
0
def restore_db():
    utils.restore_db()