Skip to content
Snippets Groups Projects
Commit ffe8f3ef authored by L4072's avatar L4072
Browse files

Added point multiplier to objectivepoint

parent 75dd763b
No related branches found
No related tags found
4 merge requests!59Development to master,!14Type orm,!13Type orm,!11Type orm
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment