diff --git a/osinaweb/addressbook/__pycache__/__init__.cpython-313.pyc b/osinaweb/addressbook/__pycache__/__init__.cpython-313.pyc index db56f21f..47a61bbc 100644 Binary files a/osinaweb/addressbook/__pycache__/__init__.cpython-313.pyc and b/osinaweb/addressbook/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/addressbook/__pycache__/admin.cpython-313.pyc b/osinaweb/addressbook/__pycache__/admin.cpython-313.pyc index 18efcfd2..334206e0 100644 Binary files a/osinaweb/addressbook/__pycache__/admin.cpython-313.pyc and b/osinaweb/addressbook/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/addressbook/__pycache__/apps.cpython-313.pyc b/osinaweb/addressbook/__pycache__/apps.cpython-313.pyc index 11c7a1d4..83fa9665 100644 Binary files a/osinaweb/addressbook/__pycache__/apps.cpython-313.pyc and b/osinaweb/addressbook/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/addressbook/__pycache__/models.cpython-313.pyc b/osinaweb/addressbook/__pycache__/models.cpython-313.pyc index 719f8781..4d97e94c 100644 Binary files a/osinaweb/addressbook/__pycache__/models.cpython-313.pyc and b/osinaweb/addressbook/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc index 24325f19..6d94e868 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc index 7613981d..91bdfcb6 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc index b869dd3b..f9823906 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc index 0b8cf476..88fc671b 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc index bf23c7b2..8b903540 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc index 33f6e857..0423a99f 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0007_prospectinglistitem_comments.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0007_prospectinglistitem_comments.cpython-313.pyc index dfdceb86..a58de168 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0007_prospectinglistitem_comments.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0007_prospectinglistitem_comments.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc index e7f096ae..c62e5339 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/authentication/__init__.py b/osinaweb/authentication/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/osinaweb/authentication/__pycache__/__init__.cpython-313.pyc b/osinaweb/authentication/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 00000000..0a6c34b8 Binary files /dev/null and b/osinaweb/authentication/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/authentication/__pycache__/models.cpython-313.pyc b/osinaweb/authentication/__pycache__/models.cpython-313.pyc new file mode 100644 index 00000000..090274ce Binary files /dev/null and b/osinaweb/authentication/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/authentication/admin.py b/osinaweb/authentication/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/osinaweb/authentication/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/osinaweb/authentication/apps.py b/osinaweb/authentication/apps.py new file mode 100644 index 00000000..8bab8df0 --- /dev/null +++ b/osinaweb/authentication/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AuthenticationConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'authentication' diff --git a/osinaweb/authentication/migrations/__init__.py b/osinaweb/authentication/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/osinaweb/authentication/models.py b/osinaweb/authentication/models.py new file mode 100644 index 00000000..2b676800 --- /dev/null +++ b/osinaweb/authentication/models.py @@ -0,0 +1,10 @@ +from django.db import models +import uuid + + +# Create your models here. +class BaseModel(models.Model): + uuid = models.UUIDField(default=uuid.uuid4, editable=False) + created_at = models.DateTimeField(auto_now_add=True, null=True) + class Meta: + abstract = True diff --git a/osinaweb/authentication/tests.py b/osinaweb/authentication/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/osinaweb/authentication/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/osinaweb/authentication/views.py b/osinaweb/authentication/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/osinaweb/authentication/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/osinaweb/billing/__pycache__/__init__.cpython-313.pyc b/osinaweb/billing/__pycache__/__init__.cpython-313.pyc index 8064f3e0..4f52116c 100644 Binary files a/osinaweb/billing/__pycache__/__init__.cpython-313.pyc and b/osinaweb/billing/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/admin.cpython-313.pyc b/osinaweb/billing/__pycache__/admin.cpython-313.pyc index 0bf4561b..bc0e6a43 100644 Binary files a/osinaweb/billing/__pycache__/admin.cpython-313.pyc and b/osinaweb/billing/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/apps.cpython-313.pyc b/osinaweb/billing/__pycache__/apps.cpython-313.pyc index d494e8c3..9f09d6cb 100644 Binary files a/osinaweb/billing/__pycache__/apps.cpython-313.pyc and b/osinaweb/billing/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/models.cpython-313.pyc b/osinaweb/billing/__pycache__/models.cpython-313.pyc index e769643c..72ea7db8 100644 Binary files a/osinaweb/billing/__pycache__/models.cpython-313.pyc and b/osinaweb/billing/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/__pycache__/urls.cpython-313.pyc index 3c26166e..ec6e092a 100644 Binary files a/osinaweb/billing/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/views.cpython-313.pyc b/osinaweb/billing/__pycache__/views.cpython-313.pyc index d9d2eaaf..ad62c2cb 100644 Binary files a/osinaweb/billing/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc index 9eeebc79..d3ac8d46 100644 Binary files a/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/add/__pycache__/views.cpython-313.pyc b/osinaweb/billing/add/__pycache__/views.cpython-313.pyc index 6104f4bc..f9b5cfd7 100644 Binary files a/osinaweb/billing/add/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc index 152a273f..a223520a 100644 Binary files a/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc b/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc index b7d27a67..fe741c4f 100644 Binary files a/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc index e33343c7..28146749 100644 Binary files a/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc b/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc index 0dbfe863..b8d85917 100644 Binary files a/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc index e4ad0091..efa8a3a5 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc index c299de49..74d2a58c 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc index 9c015085..f3b7039b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc index 6fcd7b23..a7ac21bd 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc index eed7f374..3dc09d4c 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc index 2289df22..40c6b449 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc index 8659e72f..4401360e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc index 7093cc3d..201939ac 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc index c51b29d1..2ae39114 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc index 97fc5d63..57e255ac 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc index c1002660..66a89f97 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc index 35be4b74..25677c2d 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc index 1d616b53..bdd2c01f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc index f0ce735f..255cf3cb 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc index fa82ca73..fb636dda 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc index 7302fd95..a489a59d 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc index 52e53e40..7e440fa2 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc index d940d06a..b792a512 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc index b77b565f..43de63ce 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc index 5ca77fdb..e4a099c4 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc index 27ca9d60..2342693b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc index 80e22179..3b8900f0 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc index ee860e24..707c668b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc index eaad4d43..9a023f42 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc index 49eb224f..f19bce41 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc index 60cca66b..cd8b2787 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc index 21e884f0..ffadc7c8 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc index 648a2324..ea0aa6d6 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc index caf11cea..39803bb4 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc index 72e28664..7b11c7a0 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc index 40a3c97a..809c1929 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc index 2a5c0278..86ea7850 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc index 623231f3..35a1ab8f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc index 47d941ed..b84a4f0f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc index 0433062a..a6927454 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc index 51bdc7e7..991e527e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc index 6a09c935..f8b3158f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc index 4b46de21..b79f828a 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc index 4c0e1f67..562a8950 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc index 726c4a6f..cd1496e3 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc index 5085fe9d..fafb2cf6 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc index f6c56612..29fcd90b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc index b57bd255..07e619e4 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc index 5623c930..82ef04d0 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc index 9624d4ae..ea7358d9 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc index 2901e2ce..42a36393 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc index 44724bb8..d1810c96 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc index 2dba582b..62bef66d 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc index 536c3c44..6a139c8d 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc index e0763576..02b285fd 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc index e350848e..f70db00f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc index b3d09f9b..715a487b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc index 1bab1316..61128f4c 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc index 52faae9c..53292e6e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/__init__.cpython-313.pyc b/osinaweb/customercore/__pycache__/__init__.cpython-313.pyc index 6491daee..712cf7cc 100644 Binary files a/osinaweb/customercore/__pycache__/__init__.cpython-313.pyc and b/osinaweb/customercore/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/admin.cpython-313.pyc b/osinaweb/customercore/__pycache__/admin.cpython-313.pyc index b91c1bb7..29ed658b 100644 Binary files a/osinaweb/customercore/__pycache__/admin.cpython-313.pyc and b/osinaweb/customercore/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/apps.cpython-313.pyc b/osinaweb/customercore/__pycache__/apps.cpython-313.pyc index 581eb3aa..b45954d5 100644 Binary files a/osinaweb/customercore/__pycache__/apps.cpython-313.pyc and b/osinaweb/customercore/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/decorators.cpython-313.pyc b/osinaweb/customercore/__pycache__/decorators.cpython-313.pyc index b02b7f46..ad400ee9 100644 Binary files a/osinaweb/customercore/__pycache__/decorators.cpython-313.pyc and b/osinaweb/customercore/__pycache__/decorators.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/models.cpython-313.pyc b/osinaweb/customercore/__pycache__/models.cpython-313.pyc index 3c8db47b..382fe27c 100644 Binary files a/osinaweb/customercore/__pycache__/models.cpython-313.pyc and b/osinaweb/customercore/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/__pycache__/urls.cpython-313.pyc index bab6b8dc..116859c1 100644 Binary files a/osinaweb/customercore/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/__pycache__/views.cpython-313.pyc index 156ae10e..49e0cf23 100644 Binary files a/osinaweb/customercore/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc index ed62e617..8b602540 100644 Binary files a/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc index e35554c0..f47b80c3 100644 Binary files a/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc index 8a60a73b..5716ebab 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc index 9af84a76..fd9f5c3f 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc index 718bee1d..7b2831e0 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc index 38d48604..f11efeec 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc index 6e5c128a..d96daad1 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc index 03f74d09..d91a580a 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc index 9d99c392..4aedec60 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc index 9039257b..1b11c090 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc index 3c7c8ac4..0242efa8 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc index 7c4dc4b9..6670fa75 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc index edb0c03d..86cfe01c 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc index 35b58dd6..8bdcb674 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc index 5a0ddbdd..6ba7aab2 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc index fda5bd2a..8693a37c 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc index db21adf7..9c15091a 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc index 5b2db03a..dc3b5a22 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc index 49a8b725..a17668b3 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc index fec20664..4cc4c862 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc index ee879e53..24e43583 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc index eee98439..e3cc2b24 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc index 133a9a7c..edbd2b64 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc index 1017c8af..29901e40 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc index 3538c064..8b7a7871 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc index 40a0db3b..b65da8ba 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc index 9a92316e..f322e596 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc index 5f62002c..662a5abc 100644 Binary files a/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc index 7729094c..b879e67e 100644 Binary files a/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index 74545bee..ff8a4423 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ diff --git a/osinaweb/osichat/__pycache__/__init__.cpython-313.pyc b/osinaweb/osichat/__pycache__/__init__.cpython-313.pyc index b24f319d..be7bace2 100644 Binary files a/osinaweb/osichat/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osichat/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/admin.cpython-313.pyc b/osinaweb/osichat/__pycache__/admin.cpython-313.pyc index e5a1b3bc..0acbc9d2 100644 Binary files a/osinaweb/osichat/__pycache__/admin.cpython-313.pyc and b/osinaweb/osichat/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/apps.cpython-313.pyc b/osinaweb/osichat/__pycache__/apps.cpython-313.pyc index c7be7ff0..848fcde5 100644 Binary files a/osinaweb/osichat/__pycache__/apps.cpython-313.pyc and b/osinaweb/osichat/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc b/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc index b0bea3d3..94f0c76a 100644 Binary files a/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc and b/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/models.cpython-313.pyc b/osinaweb/osichat/__pycache__/models.cpython-313.pyc index d8a0bdab..52468330 100644 Binary files a/osinaweb/osichat/__pycache__/models.cpython-313.pyc and b/osinaweb/osichat/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/routing.cpython-313.pyc b/osinaweb/osichat/__pycache__/routing.cpython-313.pyc index 4555ee40..4b64d861 100644 Binary files a/osinaweb/osichat/__pycache__/routing.cpython-313.pyc and b/osinaweb/osichat/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/urls.cpython-313.pyc b/osinaweb/osichat/__pycache__/urls.cpython-313.pyc index 56e5dcf9..fe8fc1cd 100644 Binary files a/osinaweb/osichat/__pycache__/urls.cpython-313.pyc and b/osinaweb/osichat/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/views.cpython-313.pyc b/osinaweb/osichat/__pycache__/views.cpython-313.pyc index 48f6005d..43e49209 100644 Binary files a/osinaweb/osichat/__pycache__/views.cpython-313.pyc and b/osinaweb/osichat/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc index 87262fa6..1f253752 100644 Binary files a/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc index a1bc1618..45f84e3c 100644 Binary files a/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc index 02578fc2..b4edb291 100644 Binary files a/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc index 98e48dad..c3cd5d87 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc index 65191842..2d67c24d 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc index cf26aac4..46d142a2 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc index 26a68312..2a4bdab8 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc index 10d11548..847c87dd 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc index a483348d..19b1f6d2 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc index fea72a90..8400c10d 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc index 16727032..393ded5e 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc index 9a9b3396..bae2d217 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc index bbc1ed33..d95c00e6 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc index 9ed76c9e..f4038622 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc index 602f15db..3927386c 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc index 292bbe3e..b20076e5 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc index c9376db3..bcf67fdd 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc index 871d7af5..ae98a0bb 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc index c061ff78..dc51049b 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc index cd861812..ad883c02 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc index 3c43b3ed..9b1b9a71 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc index 798cdb89..34093698 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc index 416650f5..d5be5caa 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc index ca7c7827..5a5ae6dc 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc index 41bf76fe..d18923a1 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc index 88a0692f..8c22ef9e 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc index b41021b1..661cb446 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc index ae045c04..decafc9a 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc index f52c970d..d651e503 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc index 0b6ab0e4..950b48bc 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc index cdc5e7d2..1c0cfcf4 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc index b531f83a..cc319fc0 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc index e623383c..94f5e832 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc index 47234af8..59b24e85 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc index 7f6783f8..63878baa 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc index e8eb2f9a..b82c2864 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc index 633d3dfc..75712c1f 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc index 463e527a..3fa720d2 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc index 3e5c6ae5..9a95c0a7 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/__init__.cpython-313.pyc b/osinaweb/osinacore/__pycache__/__init__.cpython-313.pyc index a551cf3d..e1e4b1e2 100644 Binary files a/osinaweb/osinacore/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/admin.cpython-313.pyc b/osinaweb/osinacore/__pycache__/admin.cpython-313.pyc index ea270dfb..f0604ea0 100644 Binary files a/osinaweb/osinacore/__pycache__/admin.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/apps.cpython-313.pyc b/osinaweb/osinacore/__pycache__/apps.cpython-313.pyc index db96ccc6..651ac769 100644 Binary files a/osinaweb/osinacore/__pycache__/apps.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc b/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc index 3734adb9..328b2cae 100644 Binary files a/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/decorators.cpython-313.pyc b/osinaweb/osinacore/__pycache__/decorators.cpython-313.pyc index 0f6b4927..ba89e281 100644 Binary files a/osinaweb/osinacore/__pycache__/decorators.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/decorators.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/forms.cpython-313.pyc b/osinaweb/osinacore/__pycache__/forms.cpython-313.pyc index 6f54874d..40dd5135 100644 Binary files a/osinaweb/osinacore/__pycache__/forms.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/forms.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/models.cpython-313.pyc b/osinaweb/osinacore/__pycache__/models.cpython-313.pyc index de0518a4..d553824d 100644 Binary files a/osinaweb/osinacore/__pycache__/models.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc b/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc index bea2734f..0e6eb6c4 100644 Binary files a/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc index 622b5678..aea943b5 100644 Binary files a/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/__pycache__/views.cpython-313.pyc index 26cd9557..ec444211 100644 Binary files a/osinaweb/osinacore/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc index f2409883..202942c7 100644 Binary files a/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc index 831a066c..fe48ca0c 100644 Binary files a/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/api/__pycache__/serializers.cpython-313.pyc b/osinaweb/osinacore/api/__pycache__/serializers.cpython-313.pyc index 91d04b9a..80ec8e54 100644 Binary files a/osinaweb/osinacore/api/__pycache__/serializers.cpython-313.pyc and b/osinaweb/osinacore/api/__pycache__/serializers.cpython-313.pyc differ diff --git a/osinaweb/osinacore/api/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/api/__pycache__/urls.cpython-313.pyc index a7c74322..a28ae342 100644 Binary files a/osinaweb/osinacore/api/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/api/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/api/__pycache__/utils.cpython-313.pyc b/osinaweb/osinacore/api/__pycache__/utils.cpython-313.pyc index 20f4370d..a807349f 100644 Binary files a/osinaweb/osinacore/api/__pycache__/utils.cpython-313.pyc and b/osinaweb/osinacore/api/__pycache__/utils.cpython-313.pyc differ diff --git a/osinaweb/osinacore/api/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/api/__pycache__/views.cpython-313.pyc index b594520f..cb8cdcb5 100644 Binary files a/osinaweb/osinacore/api/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/api/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/delete/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/delete/__pycache__/urls.cpython-313.pyc index 453bc758..d109747f 100644 Binary files a/osinaweb/osinacore/delete/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/delete/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/delete/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/delete/__pycache__/views.cpython-313.pyc index fea68aad..429bdb7f 100644 Binary files a/osinaweb/osinacore/delete/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/delete/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc index a5614454..07c27eff 100644 Binary files a/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc index 121df93d..3def4061 100644 Binary files a/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/knowledge_base/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/knowledge_base/__pycache__/urls.cpython-313.pyc index ea398739..478763c6 100644 Binary files a/osinaweb/osinacore/knowledge_base/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/knowledge_base/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/knowledge_base/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/knowledge_base/__pycache__/views.cpython-313.pyc index 2f02d3da..ca26c1c3 100644 Binary files a/osinaweb/osinacore/knowledge_base/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/knowledge_base/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/0118_business_created_at_business_uuid_and_more.py b/osinaweb/osinacore/migrations/0118_business_created_at_business_uuid_and_more.py new file mode 100644 index 00000000..b4bb4bb7 --- /dev/null +++ b/osinaweb/osinacore/migrations/0118_business_created_at_business_uuid_and_more.py @@ -0,0 +1,284 @@ +# Generated by Django 5.1.7 on 2025-06-21 12:53 + +import uuid +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('osinacore', '0117_task_milestone'), + ] + + operations = [ + migrations.AddField( + model_name='business', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='business', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='businesstype', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='businesstype', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='connection', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='connection', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='customerprofile', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='customerprofile', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='dailyreport', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='dailyreport', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='department', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='department', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='epic', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='epic', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='jobposition', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='jobposition', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='milestone', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='milestone', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='note', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='note', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='pinnedproject', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='pinnedproject', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='point', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='point', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='pointactivity', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='pointactivity', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='project', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='project', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='projectcredential', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='projectcredential', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='projectfile', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='projectfile', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='projectfilealbum', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='projectfilealbum', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='projectstatus', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='projectstatus', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='projecttype', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='projecttype', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='reaction', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='reaction', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='reference', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='reference', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='staffposition', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='staffposition', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='staffprofile', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='staffprofile', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='status', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='status', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='tag', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='tag', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='task', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='task', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + migrations.AddField( + model_name='userstory', + name='created_at', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='userstory', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + ] diff --git a/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc index ca271559..5e977721 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc index 1db432cb..39584ff7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc index 3eaf2e6b..411e1701 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc index 8f084227..68c2701c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc index 6c98f8de..9cee0cf3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc index f015e57f..b7179a5d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc index 99348953..110125d7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc index f56b71dc..2a32de07 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc index 9cd634be..5c58ce8d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc index f17ba6a5..05902594 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc index 88d4ddc5..026e70ce 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc index 303fa970..df3e8308 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc index ad3f0bcb..7657fe6c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc index 4b5da4df..efd928da 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc index 5c179b33..9bfa37d7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc index de39affe..84d06dd3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc index 0cb68a90..d923b76d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc index 5acd905f..226136aa 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc index 68ef66ca..a7be43a5 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc index b8b87fd3..8d53fc6a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc index 96cf01df..52fd12c3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc index 46954ea2..1399c0f3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc index 980004eb..815ac0a5 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc index aa0c215e..6dde9a91 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc index 6f02f4af..04fbc08a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc index 4a7762d4..f43881c1 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc index 3d0c1887..97998d18 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc index 2109d8c0..2db7d87b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc index d46787b7..26238097 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc index c304e77e..2bba2ae8 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc index a183d345..4bd68653 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc index f31ad61a..33b816e2 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc index 0bf4a97f..57e7331f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc index 03b7f16b..dd84446e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc index fb3f2011..657cd606 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc index cfcf9e33..2cbd621c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc index ad13bc56..0f53e646 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc index bfed674c..f1e0d556 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc index 891801ed..a5057c46 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc index b5af6933..58b7a810 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc index 12d53ef5..3c336976 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc index 8fb6eb20..77da6afe 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc index d73dd4d5..8aefa42c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc index f8444295..d4c3a464 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc index 44749177..86ca619e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc index 7a07ccf9..32929570 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc index 19bfbe43..b0781510 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc index fe1b956e..34427828 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc index 197bad79..623fa52d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc index 506d2b63..94570ed0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc index 0a22c579..ab11fcf9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc index 9c248af5..dc2355be 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc index 08e62413..65042721 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc index 988eb934..c2528fe9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc index 860526a7..34a692f1 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc index 54829b43..da9def8a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc index 7efa05d2..14e2c8bf 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc index a492b391..005c5b11 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc index d6b47e67..3830d084 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc index cf09de9c..2c765c5d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc index 2d0bc646..7085950a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc index acd764fe..e56d2b8d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc index e1b849fd..75aa10e3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc index a4658b0a..93756662 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc index e0963a13..c38adca6 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc index 6dccd75e..37f717c7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc index 6cb24570..7723852b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc index 0814dd2d..61c7b75a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc index d613c474..6c6fc72a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc index f2dceb44..9e7c15ac 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc index 850876a6..d13a6ad1 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc index d33ced0e..1767ba7b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc index a948f3b4..9dbd7795 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc index 8138db5d..cfba1f46 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc index c1cef896..19e48eee 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc index ab262ff2..ca9f25d5 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc index 734ac172..5b232b39 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc index 7b7c9520..a408cb0c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc index c68d017c..1d3756ca 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc index 378a7b8f..e9d2b489 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc index ad1fe59e..f1c85ec5 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc index 4466e252..c65b096c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc index 44f5fe27..0a457e2f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc index 1c596980..08a27174 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc index dd4815d8..8e56a4cd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc index 27a9e566..a6f7f26e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc index 7eae5547..2ac0fe14 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc index fbfe1535..755d9b65 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc index 2a97b2a8..a551aa40 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc index a9e23657..33834143 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc index be2c5ebc..50078b9b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc index 065afea8..3775ea08 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc index 10c329d4..ff3541d6 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc index a239e734..d728770b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc index f9fe40c9..3f2cc615 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc index c6ed5822..d3478c0e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc index 75d3a9b2..edb2a832 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc index 63becca6..2d2e6747 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc index b374d205..bbaf7f58 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc index ec694ad5..d5614a52 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc index c87facb5..29de1574 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc index 7efab038..442eac50 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc index 9b4b8db3..01453878 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc index def54dd0..a485ca03 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc index 34f8b581..56b2caf4 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc index 74fa2917..264e1605 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc index 175fe04c..924ac69d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc index 2bbe1d8f..43d1e6cd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc index 7fa8fa54..0ddd85a7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc index 25008d7e..150789ad 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc index ad435864..48958a01 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc index d9f1dd53..34dd9941 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc index c43a0890..1f0c9f6a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc index e5a4e397..32b3230e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc index fab19ffa..e5fcb3f7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc index 8cd9507f..13c82714 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0117_task_milestone.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0117_task_milestone.cpython-313.pyc index a40eb7ca..35ee15d9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0117_task_milestone.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0117_task_milestone.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0118_business_created_at_business_uuid_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0118_business_created_at_business_uuid_and_more.cpython-313.pyc new file mode 100644 index 00000000..626ddb9f Binary files /dev/null and b/osinaweb/osinacore/migrations/__pycache__/0118_business_created_at_business_uuid_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc index 3c5169df..169d2761 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinacore/models.py b/osinaweb/osinacore/models.py index d5f6abd4..7bdd0484 100644 --- a/osinaweb/osinacore/models.py +++ b/osinaweb/osinacore/models.py @@ -11,9 +11,9 @@ from django.dispatch import receiver from asgiref.sync import async_to_sync from channels.layers import get_channel_layer from datetime import timedelta +from authentication .models import * - -class Reference(models.Model): +class Reference(BaseModel): name = models.CharField(max_length=50) date = models.DateField() @@ -21,21 +21,21 @@ class Reference(models.Model): return self.name -class Tag(models.Model): +class Tag(BaseModel): name = models.CharField(max_length=50) def __str__(self): return self.name -class BusinessType(models.Model): +class BusinessType(BaseModel): name = models.CharField(max_length=50) def __str__(self): return self.name -class CustomerProfile(models.Model): +class CustomerProfile(BaseModel): user = models.OneToOneField(User, on_delete=models.CASCADE, blank=True) mobile_number = models.CharField(max_length=50, blank=True) personal_website = models.URLField(null=True, blank=True) @@ -82,7 +82,7 @@ class CustomerProfile(models.Model): return f"last seen on {last_seen_time.strftime('%b %d at %I:%M %p')}" -class Business(models.Model): +class Business(BaseModel): name = models.CharField(max_length=50) email = models.EmailField(unique=True) financial_number = models.CharField(max_length=50) @@ -112,7 +112,7 @@ class Business(models.Model): super(Business, self).save(*args, **kwargs) -class Department(models.Model): +class Department(BaseModel): name = models.CharField(max_length=100) def __str__(self): @@ -124,7 +124,7 @@ class Department(models.Model): return staff_profiles -class JobPosition(models.Model): +class JobPosition(BaseModel): name = models.CharField(max_length=100) department = models.ForeignKey(Department, on_delete=models.SET_NULL, null=True) @@ -133,7 +133,7 @@ class JobPosition(models.Model): return self.name -class StaffProfile(models.Model): +class StaffProfile(BaseModel): user = models.OneToOneField(User, on_delete=models.CASCADE) image = models.ImageField(upload_to='uploaded_images', null=True, blank=True) mobile_number = models.CharField(max_length=50) @@ -177,14 +177,14 @@ class StaffProfile(models.Model): return self.staffposition_set.filter(end_date__isnull=True).exists() -class StaffPosition(models.Model): +class StaffPosition(BaseModel): staff = models.ForeignKey(StaffProfile, on_delete=models.CASCADE) position = models.ForeignKey(JobPosition, null=True, on_delete=models.SET_NULL) start_date = models.DateField() end_date = models.DateField(null=True, blank=True) -class ProjectType(models.Model): +class ProjectType(BaseModel): name = models.CharField(max_length=50) department = models.ForeignKey(Department, on_delete=models.SET_NULL, null=True) @@ -192,7 +192,7 @@ class ProjectType(models.Model): return self.name -class Project(models.Model): +class Project(BaseModel): name = models.CharField(max_length=50) logo = models.ImageField(null=True, blank=True) customer = models.ForeignKey(CustomerProfile, on_delete=models.CASCADE, null=True) @@ -246,7 +246,7 @@ class Project(models.Model): return Task.objects.filter(project=self, assigned_to=user.staffprofile).exclude(status='Closed').count() -class ProjectStatus(models.Model): +class ProjectStatus(BaseModel): STATUS_CHOICES = ( ('In Progress', 'In Progress'), ('Completed', 'Completed'), @@ -258,12 +258,12 @@ class ProjectStatus(models.Model): date = models.DateTimeField() -class PinnedProject(models.Model): +class PinnedProject(BaseModel): user = models.ForeignKey(User, on_delete=models.CASCADE) project = models.ForeignKey(Project, on_delete=models.CASCADE) -class Epic(models.Model): +class Epic(BaseModel): title = models.CharField(max_length=150) STATUS_CHOICES = ( ('Open', 'Open'), @@ -279,7 +279,7 @@ class Epic(models.Model): return self.title -class Milestone(models.Model): +class Milestone(BaseModel): name = models.CharField(max_length=150) description = models.TextField() project = models.ForeignKey(Project, on_delete=models.CASCADE, null=True) @@ -290,7 +290,7 @@ class Milestone(models.Model): return self.name -class UserStory(models.Model): +class UserStory(BaseModel): milestone = models.ForeignKey(Milestone, on_delete=models.SET_NULL, null=True) content = models.CharField(max_length=350) project = models.ForeignKey(Project, on_delete=models.CASCADE, null=True) @@ -303,18 +303,18 @@ class UserStory(models.Model): return self.content -class ProjectFileAlbum(models.Model): +class ProjectFileAlbum(BaseModel): name = models.CharField(max_length=350, null=True) project = models.ForeignKey(Project, on_delete=models.CASCADE, null=True) -class ProjectFile(models.Model): +class ProjectFile(BaseModel): album = models.ForeignKey(ProjectFileAlbum, on_delete=models.CASCADE, null=True) file = models.FileField(null=True, upload_to='project_files') date_added = models.DateTimeField(null=True) -class ProjectCredential(models.Model): +class ProjectCredential(BaseModel): identifier = models.CharField(max_length=350) password = models.CharField(max_length=350) description = models.TextField(null=True, blank=True) @@ -322,7 +322,7 @@ class ProjectCredential(models.Model): date_added = models.DateTimeField(null=True) -class Note(models.Model): +class Note(BaseModel): text = models.TextField(blank=True) date = models.DateTimeField(null=True, blank=True) user = models.ForeignKey(User, on_delete=models.CASCADE, null=True, blank=True) @@ -330,7 +330,7 @@ class Note(models.Model): project = models.ForeignKey(Project, on_delete=models.CASCADE, null=True, blank=True) -class Task(models.Model): +class Task(BaseModel): name = models.CharField(max_length=250) project = models.ForeignKey(Project, on_delete=models.CASCADE, null=True) epic = models.ForeignKey(Epic, on_delete=models.CASCADE, null=True) @@ -380,7 +380,7 @@ class Task(models.Model): return total_time_hours, total_time_minutes, total_time_seconds -class Point(models.Model): +class Point(BaseModel): text = models.TextField(blank=True) STATUS_CHOICES = ( ('Not Completed', 'Not Completed'), @@ -402,7 +402,7 @@ class Point(models.Model): return total_time_hours, total_time_minutes, total_time_seconds -class PointActivity(models.Model): +class PointActivity(BaseModel): point = models.ForeignKey(Point, on_delete=models.CASCADE, null=True) start_time = models.DateTimeField() end_time = models.DateTimeField(null=True, blank=True) @@ -425,7 +425,7 @@ class PointActivity(models.Model): return 0, 0, 0 -class Status(models.Model): +class Status(BaseModel): TYPE_CHOICES = ( ('Task', 'Task'), ('Daily Report', 'Daily Report'), @@ -489,20 +489,20 @@ def new_ticket_update_handler(sender, instance, created, **kwargs): async_to_sync(channel_layer.group_send)("new_status_group", event) -class Reaction(models.Model): +class Reaction(BaseModel): status = models.ForeignKey(Status, on_delete=models.CASCADE) emoji = models.CharField(max_length=15) user = models.ForeignKey(User, on_delete=models.CASCADE) -class DailyReport(models.Model): +class DailyReport(BaseModel): text = models.TextField(blank=True) date = models.CharField(max_length=40) time = models.CharField(max_length=40) staff = models.ForeignKey(StaffProfile, on_delete=models.CASCADE, null=True, blank=True, related_name='dailyreport_staff') -class Connection(models.Model): +class Connection(BaseModel): date = models.DateTimeField(null=True) user = models.OneToOneField(User, on_delete=models.CASCADE) online = models.BooleanField(default=True) diff --git a/osinaweb/osinaweb/__pycache__/__init__.cpython-313.pyc b/osinaweb/osinaweb/__pycache__/__init__.cpython-313.pyc index 27a97fcd..07289bee 100644 Binary files a/osinaweb/osinaweb/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osinaweb/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinaweb/__pycache__/asgi.cpython-313.pyc b/osinaweb/osinaweb/__pycache__/asgi.cpython-313.pyc index f0432408..54396d30 100644 Binary files a/osinaweb/osinaweb/__pycache__/asgi.cpython-313.pyc and b/osinaweb/osinaweb/__pycache__/asgi.cpython-313.pyc differ diff --git a/osinaweb/osinaweb/__pycache__/routing.cpython-313.pyc b/osinaweb/osinaweb/__pycache__/routing.cpython-313.pyc index 44960b23..d68cb9bc 100644 Binary files a/osinaweb/osinaweb/__pycache__/routing.cpython-313.pyc and b/osinaweb/osinaweb/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/osinaweb/__pycache__/settings.cpython-313.pyc b/osinaweb/osinaweb/__pycache__/settings.cpython-313.pyc index ee47cf94..6e0cc10b 100644 Binary files a/osinaweb/osinaweb/__pycache__/settings.cpython-313.pyc and b/osinaweb/osinaweb/__pycache__/settings.cpython-313.pyc differ diff --git a/osinaweb/osinaweb/__pycache__/urls.cpython-313.pyc b/osinaweb/osinaweb/__pycache__/urls.cpython-313.pyc index edef339f..a83cd67c 100644 Binary files a/osinaweb/osinaweb/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinaweb/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/__init__.cpython-313.pyc b/osinaweb/support/__pycache__/__init__.cpython-313.pyc index b94ebb3f..923d51fa 100644 Binary files a/osinaweb/support/__pycache__/__init__.cpython-313.pyc and b/osinaweb/support/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/admin.cpython-313.pyc b/osinaweb/support/__pycache__/admin.cpython-313.pyc index aa19c36e..51ea45c9 100644 Binary files a/osinaweb/support/__pycache__/admin.cpython-313.pyc and b/osinaweb/support/__pycache__/admin.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/apps.cpython-313.pyc b/osinaweb/support/__pycache__/apps.cpython-313.pyc index dbb28338..3fbb8cea 100644 Binary files a/osinaweb/support/__pycache__/apps.cpython-313.pyc and b/osinaweb/support/__pycache__/apps.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/consumers.cpython-313.pyc b/osinaweb/support/__pycache__/consumers.cpython-313.pyc index 244389ed..52bf0045 100644 Binary files a/osinaweb/support/__pycache__/consumers.cpython-313.pyc and b/osinaweb/support/__pycache__/consumers.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/decorators.cpython-313.pyc b/osinaweb/support/__pycache__/decorators.cpython-313.pyc index f167f9c5..76f8094b 100644 Binary files a/osinaweb/support/__pycache__/decorators.cpython-313.pyc and b/osinaweb/support/__pycache__/decorators.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/models.cpython-313.pyc b/osinaweb/support/__pycache__/models.cpython-313.pyc index 3cfdd6ac..562d6082 100644 Binary files a/osinaweb/support/__pycache__/models.cpython-313.pyc and b/osinaweb/support/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/routing.cpython-313.pyc b/osinaweb/support/__pycache__/routing.cpython-313.pyc index 2cff6d77..962b81dc 100644 Binary files a/osinaweb/support/__pycache__/routing.cpython-313.pyc and b/osinaweb/support/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/urls.cpython-313.pyc b/osinaweb/support/__pycache__/urls.cpython-313.pyc index 7a85b0e5..136e8f41 100644 Binary files a/osinaweb/support/__pycache__/urls.cpython-313.pyc and b/osinaweb/support/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/support/__pycache__/views.cpython-313.pyc b/osinaweb/support/__pycache__/views.cpython-313.pyc index 753d08e6..957d2035 100644 Binary files a/osinaweb/support/__pycache__/views.cpython-313.pyc and b/osinaweb/support/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/support/add/__pycache__/urls.cpython-313.pyc b/osinaweb/support/add/__pycache__/urls.cpython-313.pyc index a75bcd99..42645e01 100644 Binary files a/osinaweb/support/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/support/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/support/add/__pycache__/views.cpython-313.pyc b/osinaweb/support/add/__pycache__/views.cpython-313.pyc index ec3c2bb4..c827ee32 100644 Binary files a/osinaweb/support/add/__pycache__/views.cpython-313.pyc and b/osinaweb/support/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0001_initial.cpython-313.pyc index 060277e7..693d5497 100644 Binary files a/osinaweb/support/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0002_remove_ticket_departments_and_more.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0002_remove_ticket_departments_and_more.cpython-313.pyc index 0ca784f2..2eef9dbe 100644 Binary files a/osinaweb/support/migrations/__pycache__/0002_remove_ticket_departments_and_more.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0002_remove_ticket_departments_and_more.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0003_remove_ticket_status.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0003_remove_ticket_status.cpython-313.pyc index 07599de5..1a35dad9 100644 Binary files a/osinaweb/support/migrations/__pycache__/0003_remove_ticket_status.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0003_remove_ticket_status.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0004_alter_ticket_opened_date_ticketconnection.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0004_alter_ticket_opened_date_ticketconnection.cpython-313.pyc index f72ec202..e662f138 100644 Binary files a/osinaweb/support/migrations/__pycache__/0004_alter_ticket_opened_date_ticketconnection.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0004_alter_ticket_opened_date_ticketconnection.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0005_alter_ticketconnection_ticket.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0005_alter_ticketconnection_ticket.cpython-313.pyc index b2b47ce2..a10e2a01 100644 Binary files a/osinaweb/support/migrations/__pycache__/0005_alter_ticketconnection_ticket.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0005_alter_ticketconnection_ticket.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0006_remove_ticketconnection_type_and_more.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0006_remove_ticketconnection_type_and_more.cpython-313.pyc index e6202a07..5686a361 100644 Binary files a/osinaweb/support/migrations/__pycache__/0006_remove_ticketconnection_type_and_more.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0006_remove_ticketconnection_type_and_more.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0007_alter_ticketstaff_staff.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0007_alter_ticketstaff_staff.cpython-313.pyc index ab2f7b08..53843835 100644 Binary files a/osinaweb/support/migrations/__pycache__/0007_alter_ticketstaff_staff.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0007_alter_ticketstaff_staff.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0008_alter_tickettask_ticket.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0008_alter_tickettask_ticket.cpython-313.pyc index 9fe98d08..3c28b1b0 100644 Binary files a/osinaweb/support/migrations/__pycache__/0008_alter_tickettask_ticket.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0008_alter_tickettask_ticket.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0009_ticketconnection_terminated_at.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0009_ticketconnection_terminated_at.cpython-313.pyc index 7b5daca1..7ca47d18 100644 Binary files a/osinaweb/support/migrations/__pycache__/0009_ticketconnection_terminated_at.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0009_ticketconnection_terminated_at.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/0010_remove_ticketconnection_terminated.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/0010_remove_ticketconnection_terminated.cpython-313.pyc index 3f72d0d2..4ec3de63 100644 Binary files a/osinaweb/support/migrations/__pycache__/0010_remove_ticketconnection_terminated.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/0010_remove_ticketconnection_terminated.cpython-313.pyc differ diff --git a/osinaweb/support/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/support/migrations/__pycache__/__init__.cpython-313.pyc index a4c3aa24..ee90a468 100644 Binary files a/osinaweb/support/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/support/migrations/__pycache__/__init__.cpython-313.pyc differ