Initial claims system setup
This commit is contained in:
18
claims/migrations/0003_claim_currency.py
Normal file
18
claims/migrations/0003_claim_currency.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.8 on 2025-11-08 15:15
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('claims', '0002_claim_submitted_by_claimlog'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='claim',
|
||||
name='currency',
|
||||
field=models.CharField(choices=[('SEK', 'Swedish krona (SEK)'), ('EUR', 'Euro (EUR)'), ('USD', 'US dollar (USD)'), ('GBP', 'British pound (GBP)')], default='SEK', max_length=3),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user