blob: 3631cc3b17225540af7da53ea2f84ffa10a0dc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 4.0.6 on 2022-11-12 12:53
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('budget', '0005_luxspendingcategory_luxfixedmonthly'),
]
operations = [
migrations.RemoveField(
model_name='luxfixedmonthly',
name='cat',
),
migrations.AlterField(
model_name='luxfixedmonthly',
name='category',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='budget.luxspendingcategory'),
),
]
|