22 lines
512 B
Python
22 lines
512 B
Python
|
# Generated by Django 5.0.6 on 2024-07-04 21:59
|
||
|
import django.utils.timezone
|
||
|
from django.db import migrations
|
||
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("invoices", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="invoice",
|
||
|
name="invoice_date",
|
||
|
field=models.DateField(
|
||
|
default=django.utils.timezone.now, verbose_name="Invoice date",
|
||
|
),
|
||
|
),
|
||
|
]
|