From e9c65c836f5d269d0f597986f6ec37214e5edd92 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 1 Sep 2018 00:23:54 +0200 Subject: Add the `OffTopicChannelName` model. --- api/migrations/0002_offtopicchannelname.py | 20 ++++++++++++++++++++ api/models.py | 9 +++++++++ 2 files changed, 29 insertions(+) create mode 100644 api/migrations/0002_offtopicchannelname.py (limited to 'api') diff --git a/api/migrations/0002_offtopicchannelname.py b/api/migrations/0002_offtopicchannelname.py new file mode 100644 index 00000000..890cd81f --- /dev/null +++ b/api/migrations/0002_offtopicchannelname.py @@ -0,0 +1,20 @@ +# Generated by Django 2.1 on 2018-08-31 22:21 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='OffTopicChannelName', + fields=[ + ('name', models.CharField(max_length=96, primary_key=True, serialize=False, validators=[django.core.validators.RegexValidator(regex='^[a-z0-9-]+$')])), + ], + ), + ] diff --git a/api/models.py b/api/models.py index 877e3622..7f4175af 100644 --- a/api/models.py +++ b/api/models.py @@ -1,3 +1,4 @@ +from django.core.validators import RegexValidator from django.db import models @@ -9,6 +10,14 @@ class DocumentationLink(models.Model): inventory_url = models.URLField() +class OffTopicChannelName(models.Model): + name = models.CharField( + primary_key=True, + max_length=96, + validators=(RegexValidator(regex=r'^[a-z0-9-]+$'),) + ) + + class SnakeName(models.Model): """A snake name used by the bot's snake cog.""" -- cgit v1.2.3