healthchecks_healthchecks/hc/accounts/migrations/0006_profile_current_team.py
Pēteris Caune 79da9e9f4f
Fix auto-fixable ruff warnings
(`ruff check --fix`)
2024-11-07 15:15:58 +02:00

22 lines
536 B
Python

# Generated by Django 1.9 on 2016-05-09 10:34
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",
),
)
]