Merge branch 'main' into select-db

# Conflicts:
#	src/i18n/locales/en.js
#	src/utils/exportSQL/generic.js
This commit is contained in:
1ilit
2024-07-07 17:57:33 +03:00
13 changed files with 143 additions and 60 deletions

View File

@@ -99,6 +99,13 @@ export function getIssues(diagram) {
});
table.indices.forEach((index) => {
if (index.name.trim() === "") {
issues.push(
i18n.t("empty_index_name", {
tableName: table.name,
}),
);
}
if (index.fields.length === 0) {
issues.push(
i18n.t("empty_index", {