Rename table to StatsSignupCount

This commit is contained in:
2020-04-26 03:39:38 +00:00
parent 3d85448b0e
commit d7a529dd94
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ with open('old_counts.csv', newline='') as csvfile:
for row in reader:
print('Adding', row['month'], row['signup_count'])
models.StatsMemberSignup.objects.update_or_create(
models.StatsSignupCount.objects.update_or_create(
month=row['month']+'-01',
defaults=dict(signup_count=row['signup_count']),
)