summaryrefslogtreecommitdiff
path: root/app/budget/migrations/0002_alter_luxpurchase_amount.py
blob: 06400dd1ed4c3f86d6aa0e7d42acc2bb16b14616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.0.6 on 2022-11-11 18:06

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('budget', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='luxpurchase',
            name='amount',
            field=models.DecimalField(decimal_places=2, max_digits=6),
        ),
    ]