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

15 lines
345 B
Python

# Generated by Django 1.11.1 on 2017-06-08 11:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("accounts", "0007_profile_check_limit")]
operations = [
migrations.AddField(
model_name="profile", name="bill_to", field=models.TextField(blank=True)
)
]