blob: 15461d4dc628809e7e9aa25f30d634e0deaba380 (
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-13 10:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('budget', '0009_rename_cat_luxpurchase_category'),
]
operations = [
migrations.AddField(
model_name='luxfixedmonthly',
name='amount',
field=models.DecimalField(decimal_places=2, max_digits=6, null=True),
),
]
|