Statistics
| Branch: | Tag: | Revision:

root / db / management / commands / run_db_control.py @ 738c4d47

History | View | Annotate | Download (317 Bytes)

1
#
2
# Run DB Control Command - Management Script
3
#
4
# Copyright 2010 Greek Research and Technology Network
5
#
6

    
7
from django.core.management.base import NoArgsCommand
8

    
9
from synnefo.db import db_controller
10

    
11
class Command(NoArgsCommand):
12
    help = ''
13
    
14
    def handle_noargs(self, **options):
15
        db_controller.main()