From dff9d4220045eb24f336d3fae0cd956733028a5b Mon Sep 17 00:00:00 2001 From: Ronnie Friman <L4168@student.jamk.fi> Date: Tue, 23 Jul 2019 06:46:59 +0300 Subject: [PATCH] update GameEntity with column image --- src/game/game.entity.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/game.entity.ts b/src/game/game.entity.ts index ccc6ea2..56f3f3f 100644 --- a/src/game/game.entity.ts +++ b/src/game/game.entity.ts @@ -28,6 +28,7 @@ export class GameEntity { @Column('text') state: string; @Column('timestamp') startdate: Timestamp; @Column('timestamp') enddate: Timestamp; + @Column('text') image: string; @OneToMany(type => FactionEntity, factions => factions.game) factions: FactionEntity[]; -- GitLab