diff --git a/osinaweb/billing/__pycache__/models.cpython-310.pyc b/osinaweb/billing/__pycache__/models.cpython-310.pyc index 9143c46d..65d3e9aa 100644 Binary files a/osinaweb/billing/__pycache__/models.cpython-310.pyc and b/osinaweb/billing/__pycache__/models.cpython-310.pyc differ diff --git a/osinaweb/billing/migrations/0024_remove_item_active.py b/osinaweb/billing/migrations/0024_remove_item_active.py new file mode 100644 index 00000000..198df902 --- /dev/null +++ b/osinaweb/billing/migrations/0024_remove_item_active.py @@ -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', + ), + ] diff --git a/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-310.pyc b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-310.pyc new file mode 100644 index 00000000..586b8f16 Binary files /dev/null and b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-310.pyc differ diff --git a/osinaweb/billing/models.py b/osinaweb/billing/models.py index a40f3c6b..0c18d33c 100644 --- a/osinaweb/billing/models.py +++ b/osinaweb/billing/models.py @@ -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 diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index c43fc810..d6535929 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ