Enhancement: better monetary field with currency code (#5858)

This commit is contained in:
shamoon 2024-02-27 08:26:06 -08:00 committed by GitHub
parent 84721b001f
commit bf11dc8d1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 283 additions and 38 deletions

View file

@ -0,0 +1,19 @@
# Generated by Django 4.2.10 on 2024-02-22 03:52
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
dependencies = [
("documents", "1044_workflow_workflowaction_workflowtrigger_and_more"),
]
operations = [
migrations.AlterField(
model_name="customfieldinstance",
name="value_monetary",
field=models.CharField(max_length=128, null=True),
),
]