feat(access): TeamUsers do not require notes

ref: #804 #792
This commit is contained in:
2025-06-07 18:57:15 +09:30
parent 2e41922d9c
commit 725782af6e
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Generated by Django 5.1.9 on 2025-06-07 09:05
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("access", "0013_delete_teamusersaudithistory"),
]
operations = [
migrations.DeleteModel(
name="TeamUsersCenturionModelNote",
),
]

View File

@ -23,6 +23,8 @@ class TeamUsers(
_audit_enabled = False
_notes_enabled = False
organization = None # Dont add organization field
class Meta: