Files
scha/schasite/migrations/0012_alter_payments_date.py
T
westfarn 0365d4a2cb
CI / test (pull_request) Successful in 4s
Unit Tests / test (pull_request) Successful in 3s
Upgrade Django from 5.2 to 6.0 (#20).
Align Model.save with keyword-only Django 6 API, fix recaptcha score widget usage, and make Payments.date use a callable default.
2026-07-14 07:13:24 -05:00

20 lines
462 B
Python

# Generated by Django 6.0.7 on 2026-07-14 12:13
import django.utils.timezone
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('schasite', '0011_alter_payments_date_communitymember_and_more'),
]
operations = [
migrations.AlterField(
model_name='payments',
name='date',
field=models.DateField(default=django.utils.timezone.now),
),
]