summaryrefslogtreecommitdiff
path: root/app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py')
-rw-r--r--app/budget/migrations/0005_luxspendingcategory_luxfixedmonthly.py33
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')),
- ],
- ),
- ]