generic nosql data editor

This commit is contained in:
Jan Prochazka
2024-08-21 13:10:28 +02:00
parent 95f580d51c
commit a51bd70e80
4 changed files with 20 additions and 4 deletions

View File

@@ -35,10 +35,14 @@ class Analyser extends DatabaseAnalyser {
pureName: x.name,
tableRowCount: stats[index]?.count,
uniqueKey: [{ columnName: '_id' }],
partitionKey: [{ columnName: '_id' }],
clusterKey: [{ columnName: '_id' }],
})),
...views.map((x, index) => ({
pureName: x.name,
uniqueKey: [{ columnName: '_id' }],
partitionKey: [{ columnName: '_id' }],
clusterKey: [{ columnName: '_id' }],
})),
],
});