diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 13:16:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 13:16:35 +0200 |
commit | d93445a8037190a060ad022eab56d4da57bcae76 (patch) | |
tree | c10cd9885f20ecd59a4814f23c8402955acff467 /commcrawler | |
parent | aeb888caade6af21f3846a31df89c553e4040507 (diff) | |
download | Comm-on-net-d93445a8037190a060ad022eab56d4da57bcae76.tar.bz2 Comm-on-net-d93445a8037190a060ad022eab56d4da57bcae76.zip |
Migration
Diffstat (limited to 'commcrawler')
-rw-r--r-- | commcrawler/migrations/0002_auto_20190808_1315.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/commcrawler/migrations/0002_auto_20190808_1315.py b/commcrawler/migrations/0002_auto_20190808_1315.py new file mode 100644 index 0000000..1e2bd7c --- /dev/null +++ b/commcrawler/migrations/0002_auto_20190808_1315.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2019-08-08 11:15 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('commcrawler', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='crawlresult', + name='status', + field=models.CharField(choices=[('P', 'In progress'), ('T', 'Time out'), ('F', 'Finished')], default='P', max_length=1, verbose_name='Status'), + ), + ] |