18 lines
469 B
Python
18 lines
469 B
Python
# Generated by Django 5.1.6 on 2025-03-03 13:50
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('invoices', '0004_invoicefile'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='invoicefile',
|
|
name='file',
|
|
field=models.FileField(blank=True, null=True, upload_to='invoice-files/%Y/%m/%d/', verbose_name='File'),
|
|
),
|
|
]
|