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

update GameEntity with column image

parent df2ae7bb
No related branches found
No related tags found
3 merge requests!59Development to master,!58Development to testing,!56Cluster update to Development
...@@ -28,6 +28,7 @@ export class GameEntity { ...@@ -28,6 +28,7 @@ export class GameEntity {
@Column('text') state: string; @Column('text') state: string;
@Column('timestamp') startdate: Timestamp; @Column('timestamp') startdate: Timestamp;
@Column('timestamp') enddate: Timestamp; @Column('timestamp') enddate: Timestamp;
@Column('text') image: string;
@OneToMany(type => FactionEntity, factions => factions.game) @OneToMany(type => FactionEntity, factions => factions.game)
factions: FactionEntity[]; factions: FactionEntity[];
......
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