diff --git a/swh/deposit/migrations/0007_auto_20171129_1609.py b/swh/deposit/migrations/0007_auto_20171129_1609.py new file mode 100644 index 00000000..371197bb --- /dev/null +++ b/swh/deposit/migrations/0007_auto_20171129_1609.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-11-29 16:09 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('deposit', '0006_depositclient_url'), + ] + + operations = [ + migrations.AlterField( + model_name='depositclient', + name='url', + field=models.TextField(null=False), + ), + ]