summaryrefslogtreecommitdiff
path: root/app/budget
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-11-12 12:17:52 -0600
committerluxagraf <sng@luxagraf.net>2022-11-12 12:17:52 -0600
commitff1ab737963fa564c46b64a747c96043bcc1970c (patch)
tree7695de77d0b255769279e33d0d6ca9da736cdebf /app/budget
parent230febc2c3fd689bf3aa5fd0f33a1a3e69742eb8 (diff)
bdgt: added missing migration files
Diffstat (limited to 'app/budget')
-rw-r--r--app/budget/migrations/0008_remove_luxpurchase_category.py17
-rw-r--r--app/budget/migrations/0009_rename_cat_luxpurchase_category.py18
2 files changed, 35 insertions, 0 deletions
diff --git a/app/budget/migrations/0008_remove_luxpurchase_category.py b/app/budget/migrations/0008_remove_luxpurchase_category.py
new file mode 100644
index 0000000..7e2a0b9
--- /dev/null
+++ b/app/budget/migrations/0008_remove_luxpurchase_category.py
@@ -0,0 +1,17 @@
+# Generated by Django 4.0.6 on 2022-11-12 13:15
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('budget', '0007_luxpurchase_cat'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='luxpurchase',
+ name='category',
+ ),
+ ]
diff --git a/app/budget/migrations/0009_rename_cat_luxpurchase_category.py b/app/budget/migrations/0009_rename_cat_luxpurchase_category.py
new file mode 100644
index 0000000..c0efeff
--- /dev/null
+++ b/app/budget/migrations/0009_rename_cat_luxpurchase_category.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.0.6 on 2022-11-12 13:16
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('budget', '0008_remove_luxpurchase_category'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='luxpurchase',
+ old_name='cat',
+ new_name='category',
+ ),
+ ]