refactor(access): Rename model Organization -> Tenant

ref: #756 #505
This commit is contained in:
2025-05-14 23:22:48 +09:30
parent 2e49de8573
commit 2d7335ff85
348 changed files with 1107 additions and 651 deletions

View File

@ -6,7 +6,7 @@ from django.test import (
TestCase
)
from access.models.organization import Organization
from access.models.tenant import Tenant
@ -488,7 +488,7 @@ def organization_one(django_db_blocker):
random_str = datetime.datetime.now(tz=datetime.timezone.utc)
item = Organization.objects.create(
item = Tenant.objects.create(
name = 'org one from global' + str(random_str)
)
@ -509,7 +509,7 @@ def organization_two(django_db_blocker):
random_str = datetime.datetime.now(tz=datetime.timezone.utc)
item = Organization.objects.create(
item = Tenant.objects.create(
name = 'org two from global' + str(random_str)
)