diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/budget/migrations/0008_remove_luxpurchase_category.py | 17 | ||||
-rw-r--r-- | app/budget/migrations/0009_rename_cat_luxpurchase_category.py | 18 |
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', + ), + ] |