You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/jdav_web/finance/migrations/0005_alter_bill_proof.py

21 lines
469 B
Python

# Generated by Django 4.0.1 on 2024-12-26 09:45
import utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("finance", "0004_alter_bill_amount"),
]
operations = [
migrations.AlterField(
model_name="bill",
name="proof",
field=utils.RestrictedFileField(
blank=True, upload_to="bill_images", verbose_name="Proof"
),
),
]