-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
46 lines (30 loc) · 1.43 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.orm import backref
db = SQLAlchemy()
class Joueurs(db.Model):
__tablename__ = 'joueurs'
id_joueur = db.Column(db.Integer, primary_key=True)
nom = db.Column(db.String(50))
prenom = db.Column(db.String(50))
mot_de_passe = db.Column(db.String(150))
nb_credit = db.Column(db.Integer)
def __repr__(self):
return f"Joueur n°{self.id_joueur}, nommé {self.prenom} {self.nom}. Il possède {self.nb_credit} crédit(s)"
class Lots(db.Model):
__tablename__ = 'lots'
id_lot = db.Column(db.Integer, primary_key=True)
nom = db.Column(db.String(255))
probabilite = db.Column(db.String(50))
def __repr__(self):
return f"Lot n°{self.id_lot}, nommé {self.nom}. Il a {self.probabilite}% de chances de tomber"
class Tirages(db.Model):
__tablename__ = 'tirages'
id_tirage = db.Column(db.Integer, primary_key=True)
id_joueur = db.Column(db.Integer, db.ForeignKey('joueurs.id_joueur'))
joueurs = db.relationship("Joueurs", backref=backref("joueurs", uselist=False))
id_lot = db.Column(db.Integer, db.ForeignKey('lots.id_lot'))
lots = db.relationship("Lots", backref=backref("lots", uselist=False))
date_tirage = db.Column(db.DateTime)
reclame = db.Column(db.Boolean)
def __repr__(self):
return f"Tirage n°{self.id_tirage}, effectué par {self.joueurs} Il a {self.probabilite}% de chances de tomber"