mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
* stub in poetry for pipenv * re-add tester image * add pre-commit / formatting * fix ghactions * revert test data whitespace, exclude tests/data * revert ws * decruft, rm tox/pipenv * install dev packages for base image * add lgtm config to force to py3
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# Generated by Django 2.2.17 on 2020-11-20 15:40
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("peeringdb_server", "0057_add_suite_and_floor"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="DeskProTicketCC",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("email", models.EmailField(max_length=254)),
|
|
(
|
|
"ticket",
|
|
models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name="cc_set",
|
|
to="peeringdb_server.DeskProTicket",
|
|
),
|
|
),
|
|
],
|
|
options={
|
|
"verbose_name": "DeskPRO Ticket CC Contact",
|
|
"verbose_name_plural": "Deskpro Ticket CC Contacts",
|
|
"unique_together": {("ticket", "email")},
|
|
},
|
|
),
|
|
]
|