diff options
| author | 2019-07-21 10:00:53 +0200 | |
|---|---|---|
| committer | 2019-07-21 10:00:53 +0200 | |
| commit | 5766439c3b521d9a70f5469ecaa2f4820270ea67 (patch) | |
| tree | baaafbd03801af3efc25a1a3fac47bf1ee25a0a3 /pydis_site/apps/api/migrations | |
| parent | Merge pull request #220 from python-discord/django-api-bot-nomination-changes (diff) | |
| parent | Update pre-commit config to ignore migrations directory (diff) | |
Merge pull request #229 from python-discord/low-hanging-merge-fruit
Minor Merges from master
Diffstat (limited to 'pydis_site/apps/api/migrations')
| -rw-r--r-- | pydis_site/apps/api/migrations/0036_removing_snake_apis.py | 25 | ||||
| -rw-r--r-- | pydis_site/apps/api/migrations/0038_merge_20190719_1817.py | 14 | 
2 files changed, 39 insertions, 0 deletions
| diff --git a/pydis_site/apps/api/migrations/0036_removing_snake_apis.py b/pydis_site/apps/api/migrations/0036_removing_snake_apis.py new file mode 100644 index 00000000..624afc95 --- /dev/null +++ b/pydis_site/apps/api/migrations/0036_removing_snake_apis.py @@ -0,0 +1,25 @@ +# Generated by Django 2.2.3 on 2019-07-10 09:07 + +from django.db import migrations + + +class Migration(migrations.Migration): + +    dependencies = [ +        ('api', '0035_create_table_log_entry'), +    ] + +    operations = [ +        migrations.DeleteModel( +            name='SnakeFact', +        ), +        migrations.DeleteModel( +            name='SnakeIdiom', +        ), +        migrations.DeleteModel( +            name='SnakeName', +        ), +        migrations.DeleteModel( +            name='SpecialSnake', +        ), +    ] diff --git a/pydis_site/apps/api/migrations/0038_merge_20190719_1817.py b/pydis_site/apps/api/migrations/0038_merge_20190719_1817.py new file mode 100644 index 00000000..532bcb70 --- /dev/null +++ b/pydis_site/apps/api/migrations/0038_merge_20190719_1817.py @@ -0,0 +1,14 @@ +# Generated by Django 2.2.3 on 2019-07-19 22:17 + +from django.db import migrations + + +class Migration(migrations.Migration): + +    dependencies = [ +        ('api', '0037_nomination_field_name_change'), +        ('api', '0036_removing_snake_apis'), +    ] + +    operations = [ +    ] | 
