Removing unique constraint on remote URLs, for now

2019-08-17
Marnanel Thurman 2019-08-14 22:51:34 +01:00
rodzic 9fab913b7a
commit a05cd5e8f1
2 zmienionych plików z 18 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1,18 @@
# Generated by Django 2.2.1 on 2019-08-14 21:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('django_kepi', '0005_incomingmessage_digest'),
]
operations = [
migrations.AlterField(
model_name='object',
name='remote_url',
field=models.URLField(blank=True, default=None, max_length=255, null=True),
),
]

Wyświetl plik

@ -45,7 +45,6 @@ class Object(PolymorphicModel):
remote_url = models.URLField(
max_length=255,
unique=True,
null=True,
blank=True,
default=None,