hosted/wlhosted/payments/migrations/0033_alter_customer_created.py
Michal Čihař 20f19d2661
Some checks failed
mypy / mypy (push) Has been cancelled
Pre-commit check / pre-commit (push) Has been cancelled
Distribution / setup (push) Has been cancelled
Test / Python 3.12 (push) Has been cancelled
Test / Python 3.13 (push) Has been cancelled
Test / Python 3.14 (push) Has been cancelled
fix: add missing migration
2026-04-10 17:30:46 +02:00

17 lines
422 B
Python

# Generated by Django 6.0.4 on 2026-04-10 15:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("payments", "0032_customer_upcoming_payment_notification_days"),
]
operations = [
migrations.AlterField(
model_name="customer",
name="created",
field=models.DateTimeField(auto_now_add=True),
),
]