Files
website-v2/libraries/migrations/0018_alter_commitdata_options.py
Lacey Williams Henschel 468615dad8 Fix bug where commit counts for libraries were not being updated monthly as they should have been
- Remove the kwargs from the call to update_libraries
- Add placeholder task for commit counts
- Refactor to simplify the commit count logic and pull it out of the management command and into a task
- Adjust schedule
- Add a separate task to update current month commit counts
- Add CommitData to admin, and add functionality to update the CommitData from the admin via button, like other admin features
2024-02-12 11:32:09 -08:00

17 lines
367 B
Python

# Generated by Django 4.2.2 on 2024-02-12 19:23
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("libraries", "0017_merge_20230919_2029"),
]
operations = [
migrations.AlterModelOptions(
name="commitdata",
options={"verbose_name_plural": "Commit Data"},
),
]