added chat messages
This commit is contained in:
@@ -85,6 +85,8 @@ const (
|
||||
EdgeRoundStats = "round_stats"
|
||||
// EdgeSpray holds the string denoting the spray edge name in mutations.
|
||||
EdgeSpray = "spray"
|
||||
// EdgeMessages holds the string denoting the messages edge name in mutations.
|
||||
EdgeMessages = "messages"
|
||||
// Table holds the table name of the matchplayer in the database.
|
||||
Table = "match_players"
|
||||
// MatchesTable is the table that holds the matches relation/edge.
|
||||
@@ -122,6 +124,13 @@ const (
|
||||
SprayInverseTable = "sprays"
|
||||
// SprayColumn is the table column denoting the spray relation/edge.
|
||||
SprayColumn = "match_player_spray"
|
||||
// MessagesTable is the table that holds the messages relation/edge.
|
||||
MessagesTable = "messages"
|
||||
// MessagesInverseTable is the table name for the Messages entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "messages" package.
|
||||
MessagesInverseTable = "messages"
|
||||
// MessagesColumn is the table column denoting the messages relation/edge.
|
||||
MessagesColumn = "match_player_messages"
|
||||
)
|
||||
|
||||
// Columns holds all SQL columns for matchplayer fields.
|
||||
|
Reference in New Issue
Block a user