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

23 lines
603 B
Python

# Generated by Django 1.11.6 on 2017-12-27 15:30
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [("accounts", "0013_remove_profile_team_access_allowed")]
operations = [
migrations.AlterField(
model_name="member",
name="user",
field=models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="memberships",
to=settings.AUTH_USER_MODEL,
),
)
]