emile 1 year ago
parent f7b5995535
commit bf778b805d

@ -0,0 +1,17 @@
# Generated by Django 4.2.5 on 2024-04-10 11:10
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('billing', '0023_alter_item_project_alter_item_type'),
]
operations = [
migrations.RemoveField(
model_name='item',
name='active',
),
]

@ -21,7 +21,6 @@ class Item(models.Model):
type = models.ForeignKey(ProjectType, on_delete=models.CASCADE, null=True, blank=True)
amount = models.FloatField(null=True)
recurring = models.BooleanField(default=False)
active = models.BooleanField(default=True, null=True)
def __str__(self):
return self.title

Binary file not shown.
Loading…
Cancel
Save