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

23 lines
547 B
Python
Raw Permalink 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',
2025-03-03 21:52:20 +01:00
field=models.FileField(
blank=True,
null=True,
upload_to='invoice-files/%Y/%m/%d/',
verbose_name='File',
),
2025-03-03 14:54:04 +01:00
),
]