healthchecks/hc/accounts/migrations/0006_profile_current_team.py
2019-05-15 14:27:50 +03:00

24 lines
600 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-05-09 10:34
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [("accounts", "0005_auto_20160509_0801")]
operations = [
migrations.AddField(
model_name="profile",
name="current_team",
field=models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.SET_NULL,
to="accounts.Profile",
),
)
]