resolved deprecation warning

This commit is contained in:
Nicholas Albion
2023-09-09 11:44:19 +10:00
parent c813d81d41
commit 3f36d04821
12 changed files with 12 additions and 12 deletions

View File

@@ -12,7 +12,7 @@ class UserApps(BaseModel):
workspace = CharField(null=True)
class Meta:
db_table = 'user_apps'
table_name = 'user_apps'
indexes = (
(('app', 'user'), True),
)