diff options
| author | 2021-06-24 18:16:09 +0200 | |
|---|---|---|
| committer | 2021-06-24 18:16:09 +0200 | |
| commit | 3a4a78e3e1e7ccb87e987ab09be3b03a7873b8d0 (patch) | |
| tree | b3457baee27992ca6f309ebe2f90aee59900b8b9 /pydis_site/apps/api/migrations | |
| parent | Merge pull request #538 from python-discord/jb3/navbar-spans (diff) | |
| parent | Merge branch 'main' into fix-nitro-message (diff) | |
Merge pull request #536 from bast0006/fix-nitro-message
Adjust Message model to support new nitro messages with over 4000 chars
Diffstat (limited to 'pydis_site/apps/api/migrations')
| -rw-r--r-- | pydis_site/apps/api/migrations/0071_increase_message_content_4000.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0071_increase_message_content_4000.py b/pydis_site/apps/api/migrations/0071_increase_message_content_4000.py new file mode 100644 index 00000000..6ca5d21a --- /dev/null +++ b/pydis_site/apps/api/migrations/0071_increase_message_content_4000.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.14 on 2021-06-24 14:45 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0070_auto_20210618_2114'), + ] + + operations = [ + migrations.AlterField( + model_name='deletedmessage', + name='content', + field=models.CharField(blank=True, help_text='The content of this message, taken from Discord.', max_length=4000), + ), + ] |