Add support for PostgresDB and save date as Date

This commit is contained in:
Jan Oberhauser
2019-07-22 20:29:06 +02:00
parent d027545986
commit a9453806b8
27 changed files with 310 additions and 73 deletions

View File

@@ -37,7 +37,7 @@ export interface IGetCredentials {
export interface ICredentialNodeAccess {
nodeType: string;
user?: string;
date?: number;
date?: Date;
}
export interface ICredentialsDecrypted {
@@ -466,8 +466,8 @@ export interface IRun {
data: IRunExecutionData;
finished?: boolean;
mode: WorkflowExecuteMode;
startedAt: number;
stoppedAt: number;
startedAt: Date;
stoppedAt: Date;
}