diff options
| author | 2021-03-04 11:58:05 +0800 | |
|---|---|---|
| committer | 2021-03-04 11:58:05 +0800 | |
| commit | b5a7dc48cd1ffbb0471858660d58b8b2e6a115fa (patch) | |
| tree | 3d9b98700df69ace83c90a31c8625710639427db /pydis_site/apps/home/migrations | |
| parent | Hide arrow to the right of More below the 1024px breakpoint (diff) | |
| parent | Update Dockerfile (diff) | |
Resolve conflicts
Diffstat (limited to 'pydis_site/apps/home/migrations')
| -rw-r--r-- | pydis_site/apps/home/migrations/0002_auto_now_on_repository_metadata.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/apps/home/migrations/0002_auto_now_on_repository_metadata.py b/pydis_site/apps/home/migrations/0002_auto_now_on_repository_metadata.py new file mode 100644 index 00000000..7e78045b --- /dev/null +++ b/pydis_site/apps/home/migrations/0002_auto_now_on_repository_metadata.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.11 on 2020-12-21 22:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='repositorymetadata', + name='last_updated', + field=models.DateTimeField(auto_now=True, help_text='The date and time this data was last fetched.'), + ), + ] |