filter parser connected

This commit is contained in:
Jan Prochazka
2020-03-12 17:52:19 +01:00
parent fc67ad0b0f
commit f86ad6ba1e
15 changed files with 356 additions and 1059 deletions

View File

@@ -1,3 +1,5 @@
import { DbType } from './DbType';
export interface NamedObjectInfo {
pureName: string;
schemaName: string;
@@ -39,6 +41,7 @@ export interface ColumnInfo {
isSparse: boolean;
defaultValue: string;
defaultConstraint: string;
commonType?: DbType;
}
export interface TableInfo extends NamedObjectInfo {
columns: ColumnInfo[];