summaryrefslogtreecommitdiff
path: root/app/budget/migrations/0007_luxpurchase_cat.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-11-12 12:00:44 -0600
committerluxagraf <sng@luxagraf.net>2022-11-12 12:00:44 -0600
commitec1043d50c9b0731a221c35d0a92a7629324003a (patch)
treed4b7d856b29eb5a4fdef8e87fd3a42977ee55bd0 /app/budget/migrations/0007_luxpurchase_cat.py
parentb49342cd534a3384d86b49e3c77f632e0d01edc9 (diff)
bdgt: switched to seperate model for spending cat
Diffstat (limited to 'app/budget/migrations/0007_luxpurchase_cat.py')
-rw-r--r--app/budget/migrations/0007_luxpurchase_cat.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/budget/migrations/0007_luxpurchase_cat.py b/app/budget/migrations/0007_luxpurchase_cat.py
new file mode 100644
index 0000000..7a8e548
--- /dev/null
+++ b/app/budget/migrations/0007_luxpurchase_cat.py
@@ -0,0 +1,19 @@
+# Generated by Django 4.0.6 on 2022-11-12 12:56
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('budget', '0006_remove_luxfixedmonthly_cat_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='luxpurchase',
+ name='cat',
+ field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='budget.luxspendingcategory'),
+ ),
+ ]