24 lines
580 B
Python
24 lines
580 B
Python
# Generated by Django 4.1.4 on 2022-12-29 20:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("main", "0018_snapshot_diff_alter_snapshot_account"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="snapshot",
|
|
name="sum",
|
|
field=models.DecimalField(
|
|
decimal_places=2,
|
|
default=0,
|
|
editable=False,
|
|
max_digits=12,
|
|
verbose_name="Transaction difference",
|
|
),
|
|
),
|
|
]
|