diff options
author | luxagraf <sng@luxagraf.net> | 2025-01-03 18:46:40 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-01-03 18:46:40 -0600 |
commit | fe7d43f308bbc3953d4a88480b8088d12cbcb0b6 (patch) | |
tree | 3aa10d1ac8e041ad2b78a5acf6b29febad6a5fe3 /app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py | |
parent | df3bc581e496412ef8c263dbf1cfe00f184e4e59 (diff) |
archived old not used apps
Diffstat (limited to 'app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py')
-rw-r--r-- | app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py b/app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py deleted file mode 100644 index 66af470..0000000 --- a/app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py +++ /dev/null @@ -1,33 +0,0 @@ -# Generated by Django 4.0.6 on 2022-11-12 12:52 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('budget', '0004_alter_luxpurchase_source'), - ] - - operations = [ - migrations.CreateModel( - name='LuxSpendingCategory', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=200)), - ('date_recorded', models.DateTimeField(auto_now_add=True)), - ], - ), - migrations.CreateModel( - name='LuxFixedMonthly', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=200)), - ('category', models.IntegerField(choices=[(0, 'Grocery & Home'), (1, 'Gas'), (2, 'Bus'), (3, 'Lodging'), (4, 'Books'), (5, 'Clothes'), (6, 'Eating Out'), (7, 'Misc')], default=0)), - ('date_recorded', models.DateTimeField(auto_now_add=True)), - ('cat', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='budget.luxspendingcategory')), - ('source', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='budget.luxsource')), - ], - ), - ] |