24 lines
537 B
Python
24 lines
537 B
Python
# Generated by Django 4.2.10 on 2024-03-27 17:41
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("schasite", "0007_payments"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="payments",
|
|
name="date",
|
|
field=models.DateField(
|
|
default=datetime.datetime(
|
|
2024, 3, 27, 17, 41, 22, 742260, tzinfo=datetime.timezone.utc
|
|
)
|
|
),
|
|
),
|
|
]
|