summaryrefslogtreecommitdiff
path: root/bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-01-03 18:46:40 -0600
committerluxagraf <sng@luxagraf.net>2025-01-03 18:46:40 -0600
commitfe7d43f308bbc3953d4a88480b8088d12cbcb0b6 (patch)
tree3aa10d1ac8e041ad2b78a5acf6b29febad6a5fe3 /bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py
parentdf3bc581e496412ef8c263dbf1cfe00f184e4e59 (diff)
archived old not used apps
Diffstat (limited to 'bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py')
-rw-r--r--bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py b/bak/unused_apps/budget/migrations/0010_luxfixedmonthly_amount.py
new file mode 100644
index 0000000..15461d4
--- /dev/null
+++ b/bak/unused_apps/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),
+ ),
+ ]