Example #1
0
 def handle(self, **options):
     """self.stdout.write("-- Creating admin")
     admin = User.objects.create_user(username='******', first_name='Harry', last_name='zeng', password='******')
     admin.save()"""
     self.stdout.write("-- Initializing round")
     r = Round()
     r.save()
     
     self.stdout.write("-- initialization complete")