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

@@ -28,6 +28,12 @@ export interface DisplayColumn {
notNull?: boolean;
autoIncrement?: boolean;
isPrimaryKey?: boolean;
// NoSQL specific
isPartitionKey?: boolean;
isClusterKey?: boolean;
isUniqueKey?: boolean;
foreignKey?: ForeignKeyInfo;
isForeignKeyUnique?: boolean;
isExpandable?: boolean;