fixed adding column

This commit is contained in:
Jan Prochazka
2021-09-20 16:32:06 +02:00
parent 760f5c9616
commit 8363a887bc
3 changed files with 58 additions and 48 deletions

View File

@@ -62,12 +62,12 @@ export interface DatabaseObjectInfo extends NamedObjectInfo {
createDate?: string;
modifyDate?: string;
hashCode?: string;
objectTypeField?: string;
}
export interface SqlObjectInfo extends DatabaseObjectInfo {
createSql?: string;
requiresFormat?: boolean; // SQL is human unreadable, requires formatting (eg. MySQL views)
objectTypeField?: string;
}
export interface TableInfo extends DatabaseObjectInfo {