aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/migrations
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-10-17 13:41:51 +0100
committerGravatar GitHub <[email protected]>2021-10-17 13:41:51 +0100
commitf5ab651b1f8e2dc9f498198087750d4c38010320 (patch)
treed101820efaa59f066e37d3aa4d6908663498a1ba /pydis_site/apps/api/migrations
parentDirect appeals to the appeals server (diff)
parentMerge pull request #613 from python-discord/mbaruh-patch-1 (diff)
Merge branch 'main' into new-ban-appeals-process
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r--pydis_site/apps/api/migrations/0073_otn_allow_GT_and_LT.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0073_otn_allow_GT_and_LT.py b/pydis_site/apps/api/migrations/0073_otn_allow_GT_and_LT.py
new file mode 100644
index 00000000..09ad13da
--- /dev/null
+++ b/pydis_site/apps/api/migrations/0073_otn_allow_GT_and_LT.py
@@ -0,0 +1,19 @@
+# Generated by Django 3.0.14 on 2021-09-27 20:38
+
+import django.core.validators
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('api', '0072_doc_allow_blank_base_url'),
+ ]
+
+ 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-ǃ?’'<>]+$")]),
+ ),
+ ]