diff options
author | 2022-04-21 17:51:57 -0400 | |
---|---|---|
committer | 2022-04-21 19:33:27 -0400 | |
commit | ebad433d4fa299085fd3bbba4a349de3088fb5d4 (patch) | |
tree | 9e7c88f66e8ba9b719b731f1f0562ca798829c52 /pydis_site/apps/api/migrations | |
parent | Merge pull request #716 from python-discord/support-string-colors (diff) |
Add support for BIG SOLIDUS unicode characters for off topic names
We must add support for all B I G S O L I D U S. This is necessary.
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0082_otn_allow_big_solidus.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0082_otn_allow_big_solidus.py b/pydis_site/apps/api/migrations/0082_otn_allow_big_solidus.py new file mode 100644 index 00000000..abbb98ec --- /dev/null +++ b/pydis_site/apps/api/migrations/0082_otn_allow_big_solidus.py @@ -0,0 +1,19 @@ +# Generated by Django 3.1.14 on 2022-04-21 23:29 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0081_bumpedthread'), + ] + + operations = [ + migrations.AlterField( + model_name='offtopicchannelname', + name='name', + field=models.CharField(help_text='The actual channel name that will be used on our Discord server.', max_length=96, primary_key=True, serialize=False, validators=[django.core.validators.RegexValidator(regex="^[a-z0-9\\U0001d5a0-\\U0001d5b9-ǃ?’'<>⧹⧸]+$")]), + ), + ] |