Skip to content
Snippets Groups Projects
Commit dcc8354b authored by Ronnie Friman's avatar Ronnie Friman
Browse files

added onDelete

parent bd94e151
No related branches found
No related tags found
3 merge requests!59Development to master,!36Development,!33Small fixes
...@@ -21,7 +21,9 @@ export class MapDrawingEntity { ...@@ -21,7 +21,9 @@ export class MapDrawingEntity {
onDelete: 'CASCADE', onDelete: 'CASCADE',
}) })
faction: FactionEntity; faction: FactionEntity;
@ManyToOne(type => GameEntity, gameEntity => gameEntity.id) @ManyToOne(type => GameEntity, gameEntity => gameEntity.id, {
onDelete: 'CASCADE',
})
gameId: GameEntity; gameId: GameEntity;
} }
...@@ -30,8 +32,20 @@ export class Game_Person_MapDrawingEntity { ...@@ -30,8 +32,20 @@ export class Game_Person_MapDrawingEntity {
@PrimaryGeneratedColumn('uuid') GPmapDrawingId: string; @PrimaryGeneratedColumn('uuid') GPmapDrawingId: string;
@Column({ type: 'timestamp' }) GPCTimeStamp: Timestamp; @Column({ type: 'timestamp' }) GPCTimeStamp: Timestamp;
@ManyToOne(type => Game_PersonEntity, game_person => game_person.gamepersonId) @ManyToOne(
type => Game_PersonEntity,
game_person => game_person.gamepersonId,
{
onDelete: 'CASCADE',
},
)
game_person: Game_PersonEntity; game_person: Game_PersonEntity;
@ManyToOne(type => MapDrawingEntity, map_drawing => map_drawing.mapDrawingId) @ManyToOne(
type => MapDrawingEntity,
map_drawing => map_drawing.mapDrawingId,
{
onDelete: 'CASCADE',
},
)
map_drawing: MapDrawingEntity; map_drawing: MapDrawingEntity;
} }
...@@ -26,15 +26,13 @@ export class FactionEntity { ...@@ -26,15 +26,13 @@ export class FactionEntity {
@Column({ type: 'text' }) @Column({ type: 'text' })
factionPassword: string; factionPassword: string;
@OneToMany(type => Game_PersonEntity, game_persons => game_persons.faction, { @OneToMany(type => Game_PersonEntity, game_persons => game_persons.faction)
onDelete: 'SET NULL',
})
game_persons: Game_PersonEntity[]; game_persons: Game_PersonEntity[];
@ManyToOne(type => GameEntity, game => game.factions) @ManyToOne(type => GameEntity, game => game.factions, {
game: GameEntity;
@OneToMany(type => MapDrawingEntity, mapDrawings => mapDrawings.faction, {
onDelete: 'CASCADE', onDelete: 'CASCADE',
}) })
game: GameEntity;
@OneToMany(type => MapDrawingEntity, mapDrawings => mapDrawings.faction)
mapDrawings: MapDrawingEntity[]; mapDrawings: MapDrawingEntity[];
factionObject() { factionObject() {
...@@ -47,7 +45,7 @@ export class FactionEntity { ...@@ -47,7 +45,7 @@ export class FactionEntity {
} }
} }
@Entity('PowerUp') /* @Entity('PowerUp')
export class PowerUpEntity { export class PowerUpEntity {
@PrimaryGeneratedColumn('uuid') powerUpId: string; @PrimaryGeneratedColumn('uuid') powerUpId: string;
@Column({ type: 'text' }) powerUpName: string; @Column({ type: 'text' }) powerUpName: string;
...@@ -55,7 +53,9 @@ export class PowerUpEntity { ...@@ -55,7 +53,9 @@ export class PowerUpEntity {
@Column({ type: 'int' }) amount: number; @Column({ type: 'int' }) amount: number;
@Column({ type: 'time' }) cooldown: string; @Column({ type: 'time' }) cooldown: string;
@OneToMany(type => FactionEntity, factions => factions.factionId) @OneToMany(type => FactionEntity, factions => factions.factionId, {
onDelete: 'CASCADE',
})
factions: Faction_PowerUpEntity[]; factions: Faction_PowerUpEntity[];
} }
...@@ -81,7 +81,7 @@ export class FP_HistoryEntity { ...@@ -81,7 +81,7 @@ export class FP_HistoryEntity {
faction_PowerUp => faction_PowerUp.histories, faction_PowerUp => faction_PowerUp.histories,
) )
faction_PowerUp: Faction_PowerUpEntity; faction_PowerUp: Faction_PowerUpEntity;
} } */
@Entity('GameGroup') @Entity('GameGroup')
export class GameGroupEntity { export class GameGroupEntity {
......
...@@ -57,19 +57,19 @@ export class Game_PersonEntity { ...@@ -57,19 +57,19 @@ export class Game_PersonEntity {
@PrimaryGeneratedColumn('uuid') gamepersonId: string; @PrimaryGeneratedColumn('uuid') gamepersonId: string;
@Column({ type: 'text', nullable: true }) role: string; @Column({ type: 'text', nullable: true }) role: string;
@ManyToOne(type => FactionEntity, faction => faction.game_persons, { @ManyToOne(type => FactionEntity, faction => faction.game_persons, {
onDelete: 'SET NULL', onDelete: 'CASCADE',
}) })
faction: FactionEntity; faction: FactionEntity;
@ManyToOne(type => GameEntity, game => game.id) @ManyToOne(type => GameEntity, game => game.id, {
onDelete: 'CASCADE',
})
game: GameEntity; game: GameEntity;
@ManyToOne(type => PersonEntity, person => person.id) @ManyToOne(type => PersonEntity, person => person.id)
person: PersonEntity; person: PersonEntity;
@OneToOne(type => GameGroupEntity, group => group.leader, { @OneToOne(type => GameGroupEntity, group => group.leader)
onDelete: 'CASCADE',
})
leaderGroup: GameGroupEntity; leaderGroup: GameGroupEntity;
@ManyToOne(type => GameGroupEntity, group => group.players, { @ManyToOne(type => GameGroupEntity, group => group.players, {
onDelete: 'CASCADE', onDelete: 'NO ACTION',
}) })
@JoinColumn({ name: 'group' }) @JoinColumn({ name: 'group' })
group: GameGroupEntity; group: GameGroupEntity;
...@@ -81,9 +81,13 @@ export class ObjectivePointEntity { ...@@ -81,9 +81,13 @@ export class ObjectivePointEntity {
@Column({ type: 'text' }) objectivePointDescription: string; @Column({ type: 'text' }) objectivePointDescription: string;
@Column({ type: 'float' }) objectivePointMultiplier: number; @Column({ type: 'float' }) objectivePointMultiplier: number;
@ManyToOne(type => MapDrawingEntity, coordinate => coordinate.data) @ManyToOne(type => MapDrawingEntity, coordinate => coordinate.data, {
onDelete: 'CASCADE',
})
coordinate: MapDrawingEntity; coordinate: MapDrawingEntity;
@ManyToOne(type => GameEntity, game => game.objective_points) @ManyToOne(type => GameEntity, game => game.objective_points, {
onDelete: 'CASCADE',
})
game: GameEntity; game: GameEntity;
} }
...@@ -103,6 +107,9 @@ export class ObjectivePoint_HistoryEntity { ...@@ -103,6 +107,9 @@ export class ObjectivePoint_HistoryEntity {
@ManyToOne( @ManyToOne(
type => ObjectivePointEntity, type => ObjectivePointEntity,
objective_point => objective_point.objectivePointId, objective_point => objective_point.objectivePointId,
{
onDelete: 'CASCADE',
},
) )
objective_point: string; objective_point: string;
} }
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn } from "typeorm"; import {
Entity,
PrimaryGeneratedColumn,
Column,
CreateDateColumn,
ManyToOne,
} from 'typeorm';
import { GameEntity } from '../game/game.entity';
// temporary table for warning notifications // temporary table for warning notifications
@Entity('Notifications') @Entity('Notifications')
export class NotificationEntity { export class NotificationEntity {
@PrimaryGeneratedColumn('uuid') id: string; @PrimaryGeneratedColumn('uuid') id: string;
@Column({type: 'text'}) message: string; @Column({ type: 'text' }) message: string;
@CreateDateColumn() issued: Date; @CreateDateColumn() issued: Date;
// TODO:
// when game creation has been implemented, add logic so that the notifications are tied to games @ManyToOne(type => GameEntity, game => game.id, {
} onDelete: 'CASCADE',
\ No newline at end of file })
game: GameEntity;
}
...@@ -14,6 +14,8 @@ export class ScoreEntity { ...@@ -14,6 +14,8 @@ export class ScoreEntity {
@Column({ type: 'float' }) score: number; @Column({ type: 'float' }) score: number;
@CreateDateColumn({ type: 'timestamp' }) scoreTimeStamp: Timestamp; @CreateDateColumn({ type: 'timestamp' }) scoreTimeStamp: Timestamp;
@ManyToOne(type => FactionEntity, factionName => factionName.factionId) @ManyToOne(type => FactionEntity, factionName => factionName.factionId, {
onDelete: 'CASCADE',
})
faction: string; faction: string;
} }
...@@ -24,7 +24,9 @@ export class TaskEntity { ...@@ -24,7 +24,9 @@ export class TaskEntity {
onDelete: 'CASCADE', onDelete: 'CASCADE',
}) })
taskWinner: FactionEntity; taskWinner: FactionEntity;
@ManyToOne(type => GameEntity, game => game.id) @ManyToOne(type => GameEntity, game => game.id, {
onDelete: 'CASCADE',
})
@JoinColumn({ name: 'taskGame' }) @JoinColumn({ name: 'taskGame' })
taskGame: GameEntity; taskGame: GameEntity;
} }
...@@ -5,6 +5,8 @@ import { Game_PersonEntity } from '../game/game.entity'; ...@@ -5,6 +5,8 @@ import { Game_PersonEntity } from '../game/game.entity';
export class TrackingEntity { export class TrackingEntity {
@PrimaryGeneratedColumn('uuid') id: string; @PrimaryGeneratedColumn('uuid') id: string;
@Column({ type: 'json', nullable: true }) data: JSON; @Column({ type: 'json', nullable: true }) data: JSON;
@ManyToOne(type => Game_PersonEntity, person => person.gamepersonId) @ManyToOne(type => Game_PersonEntity, person => person.gamepersonId, {
onDelete: 'CASCADE',
})
gamepersonId: Game_PersonEntity; gamepersonId: Game_PersonEntity;
} }
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