You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
513 B
11 lines
513 B
4 years ago
|
from app import db
|
||
|
from app.models import Role
|
||
|
|
||
|
class GamePlayer(db.Model):
|
||
|
__tablename__ = 'game_player'
|
||
|
game_id = db.Column(db.Integer, db.ForeignKey('game.id'), primary_key=True, nullable=False)
|
||
|
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), primary_key=True, nullable=False)
|
||
|
role = db.Column(db.Enum(Role), server_default=Role(0).name, nullable=False)
|
||
|
game = db.relationship('Game', back_populates='game_players')
|
||
|
user = db.relationship('User', back_populates='user_games')
|