diff options
| author | 2019-07-10 11:10:49 +0200 | |
|---|---|---|
| committer | 2019-07-10 11:10:49 +0200 | |
| commit | 0d69539cde6371e55dba8616870e6fd0df16bdeb (patch) | |
| tree | 9a2cde339578df62857227ce0273fad9a17798fc /pydis_site/apps/api/migrations | |
| parent | Give a code a lint (diff) | |
Removing all the snake-related stuff. The snakes cog is now handled by SeasonalBot, and no longer relies on any API endpoints.
Diffstat (limited to 'pydis_site/apps/api/migrations')
| -rw-r--r-- | pydis_site/apps/api/migrations/0036_removing_snake_apis.py | 25 | 
1 files changed, 25 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', +        ), +    ] | 
