chore: cleanup mssql and sync dependencies

This commit is contained in:
DarkPhoenix2704
2025-06-10 10:33:08 +00:00
parent e331856313
commit e305992431
122 changed files with 83 additions and 5612 deletions

View File

@@ -28,7 +28,7 @@ const { isMobileMode } = useGlobal()
const { $e, $api } = useNuxtApp()
const { isMysql, isMssql, isPg } = useBase()
const { isMysql, isPg } = useBase()
useTableNew({
baseId: base.value.id!,
@@ -97,8 +97,6 @@ const validators = computed(() => {
tableNameLengthLimit = 64
} else if (isPg(source.value?.id)) {
tableNameLengthLimit = 63
} else if (isMssql(source.value?.id)) {
tableNameLengthLimit = 128
}
const basePrefix = base?.value?.prefix || ''
if ((basePrefix + value).length > tableNameLengthLimit) {