diff --git a/src/game/game.entity.ts b/src/game/game.entity.ts index 4a823ebba8809ae8572e9b04c726be2100afeb02..8f839ba586b6e713b47787360b0b4597f740c3ac 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;