insert rows

This commit is contained in:
Jan Prochazka
2020-03-28 11:41:29 +01:00
parent 54976ca21f
commit 2107daf0f0
6 changed files with 85 additions and 13 deletions

View File

@@ -36,10 +36,7 @@ export interface Delete {
export interface Insert {
commandType: 'insert';
fields: UpdateField[];
targetTable: {
schemaName: string;
pureName: string;
};
targetTable: NamedObjectInfo;
}
export type Command = Select | Update | Delete | Insert;