From ffe8f3efa8a329095ef70056bac857ffee783f58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Syd=C3=A4nmaa?= <L4072@student.jamk.fi> Date: Tue, 11 Jun 2019 15:35:21 +0300 Subject: [PATCH] Added point multiplier to objectivepoint --- 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 4a823eb..8f839ba 100644 --- a/src/game/game.entity.ts +++ b/src/game/game.entity.ts @@ -53,6 +53,7 @@ export class Game_PersonEntity { export class ObjectivePointEntity { @PrimaryGeneratedColumn('uuid') objectivePointId: string; @Column({type: 'text'}) objectivePointDescription: string; + @Column({type: 'float'}) objectivePointMultiplier: number; @ManyToOne(type => CoordinateEntity, coordinate => coordinate.objective_points) coordinate: CoordinateEntity; -- GitLab