aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0003_offtopicchannelname.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-05 12:11:31 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-05 12:11:31 +0100
commitebda74029355ce3236ca9266acde40fd40329df7 (patch)
treeaba491f902c874328c88b8e7ccb9772b5414c17f /api/migrations/0003_offtopicchannelname.py
parentSet `harakiri = 30`. (diff)
[#176] Redo project layout
Diffstat (limited to 'api/migrations/0003_offtopicchannelname.py')
-rw-r--r--api/migrations/0003_offtopicchannelname.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/api/migrations/0003_offtopicchannelname.py b/api/migrations/0003_offtopicchannelname.py
deleted file mode 100644
index 2f19bfd8..00000000
--- a/api/migrations/0003_offtopicchannelname.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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', '0002_documentationlink'),
- ]
-
- 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-]+$')])),
- ],
- ),
- ]