Skip to content
Snippets Groups Projects
Commit 695a8765 authored by L4168's avatar L4168
Browse files

added state to GameEntity

parent dd64c997
No related branches found
No related tags found
3 merge requests!59Development to master,!36Development,!32Game state
...@@ -25,6 +25,7 @@ export class GameEntity { ...@@ -25,6 +25,7 @@ export class GameEntity {
@Column('json') center: CenterDTO; @Column('json') center: CenterDTO;
@Column({ type: 'json', nullable: true }) map: JSON; @Column({ type: 'json', nullable: true }) map: JSON;
@Column({ type: 'json', nullable: true }) nodesettings?: NodeSettingsDTO; @Column({ type: 'json', nullable: true }) nodesettings?: NodeSettingsDTO;
@Column('text') state: string;
@Column('timestamp') startdate: Timestamp; @Column('timestamp') startdate: Timestamp;
@Column('timestamp') enddate: Timestamp; @Column('timestamp') enddate: Timestamp;
......
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