[AB-303] adding scheduled configurable activity updates

This commit is contained in:
Sheldan
2021-07-13 00:35:15 +02:00
parent c7514a6bad
commit ac605e4791
25 changed files with 1859 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import lombok.*;
import javax.persistence.*;
import java.io.Serializable;
import java.time.Instant;
@Entity
@Table(name="voice_channel_context")
@@ -29,4 +30,7 @@ public class VoiceChannelContext implements Serializable {
@JoinColumn(name = "role_id", nullable = false)
private ARole role;
@Column(name = "created", nullable = false, insertable = false, updatable = false)
private Instant created;
}