browse view data

This commit is contained in:
Jan Prochazka
2020-04-12 18:44:59 +02:00
parent ea6c31187b
commit 4bc252fdd2
20 changed files with 497 additions and 322 deletions

View File

@@ -61,7 +61,9 @@ export interface TableInfo extends DatabaseObjectInfo {
dependencies?: ForeignKeyInfo[];
}
export interface ViewInfo extends SqlObjectInfo {}
export interface ViewInfo extends SqlObjectInfo {
columns: ColumnInfo[];
}
export interface ProcedureInfo extends SqlObjectInfo {}