1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/migrations/0020_vqueue_item_unique.py
Matt Griswold 04f1928b3c Updates 2.23 (#843)
* pipenv lock and pyupgrade

* pyupgrade, black format, add docs

* update for py3.7
2020-09-29 20:13:38 -05:00

20 lines
450 B
Python

# Generated by Django 1.11.20 on 2019-11-04 08:38
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("contenttypes", "0002_remove_content_type_name"),
("peeringdb_server", "0019_auto_20190819_1133"),
]
operations = [
migrations.AlterUniqueTogether(
name="verificationqueueitem",
unique_together={("content_type", "object_id")},
),
]