1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/entities/ConnectionConfigEntity.ts b/src/util/entities/ConnectionConfigEntity.ts
index 75c4a801..b10f5766 100644
--- a/src/util/entities/ConnectionConfigEntity.ts
+++ b/src/util/entities/ConnectionConfigEntity.ts
@@ -20,12 +20,12 @@ import { Column, Entity } from "typeorm";
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
@Entity({
- name: "connection_config",
+ name: "connection_config",
})
export class ConnectionConfigEntity extends BaseClassWithoutId {
- @PrimaryIdColumn()
- key: string;
+ @PrimaryIdColumn()
+ key: string;
- @Column({ type: "simple-json", nullable: true })
- value: number | boolean | null | string | Date | undefined;
+ @Column({ type: "simple-json", nullable: true })
+ value: number | boolean | null | string | Date | undefined;
}
|