add migrations
This commit is contained in:
22
fet2020/finance/migrations/0003_wiref_status.py
Normal file
22
fet2020/finance/migrations/0003_wiref_status.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Generated by Django 4.2.9 on 2024-01-21 22:28
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("finance", "0002_alter_bill_affiliation_alter_bill_payer"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="wiref",
|
||||||
|
name="status",
|
||||||
|
field=models.CharField(
|
||||||
|
choices=[("O", "Offen"), ("S", "Eingereicht"), ("T", "Überwiesen")],
|
||||||
|
default="O",
|
||||||
|
max_length=1,
|
||||||
|
verbose_name="Status",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user