Skip to content

Commit 43fc075

Browse files
authored
(fix) extend metlo config from base entity (#76)
1 parent 12fd0dd commit 43fc075

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

backend/src/models/metlo-config.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
import {
2-
BaseEntity,
3-
Column,
4-
CreateDateColumn,
5-
Entity,
6-
PrimaryGeneratedColumn,
7-
UpdateDateColumn,
8-
} from "typeorm"
1+
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm"
2+
import MetloBaseEntity from "./metlo-base-entity"
93

104
@Entity()
11-
export class MetloConfig extends BaseEntity {
5+
export class MetloConfig extends MetloBaseEntity {
126
@PrimaryGeneratedColumn("uuid")
137
uuid: string
148

0 commit comments

Comments
 (0)