1
0
Fork 0

Use more sane numbers for initial data

merge-requests/84/head
Nikos Roussos 2014-12-14 19:47:17 +02:00
parent 5c95b8dfd1
commit 1504710d74
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ class Command(BaseCommand):
help = 'Create initial fixtures'
def handle(self, *args, **options):
ObservationFactory.create_batch(200)
StationFactory.create_batch(200)
ObservationFactory.create_batch(20)
StationFactory.create_batch(20)
satellites = Satellite.objects.all()