This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/invoices/migrations/0005_alter_invoicefile_file.py

19 lines
469 B
Python
Raw Normal View History

2025-03-03 14:54:04 +01:00
# 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'),
),
]