34 lines
885 B
Python
34 lines
885 B
Python
# Generated by Django 4.1.4 on 2022-12-29 20:56
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("main", "0017_alter_transaction_account"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="snapshot",
|
|
name="diff",
|
|
field=models.DecimalField(
|
|
decimal_places=2,
|
|
default=0,
|
|
editable=False,
|
|
max_digits=12,
|
|
verbose_name="Différence",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="snapshot",
|
|
name="account",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to="main.account",
|
|
verbose_name="Account",
|
|
),
|
|
),
|
|
]
|