summaryrefslogtreecommitdiff
path: root/app/budget/migrations/0010_luxfixedmonthly_amount.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/budget/migrations/0010_luxfixedmonthly_amount.py')
-rw-r--r--app/budget/migrations/0010_luxfixedmonthly_amount.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/budget/migrations/0010_luxfixedmonthly_amount.py b/app/budget/migrations/0010_luxfixedmonthly_amount.py
new file mode 100644
index 0000000..15461d4
--- /dev/null
+++ b/app/budget/migrations/0010_luxfixedmonthly_amount.py
@@ -0,0 +1,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),
+ ),
+ ]