Coverage for bundesliga_tippspiel/db/user_generated/MatchdayWinner.py: 93%

Shortcuts on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

13 statements  

1"""LICENSE 

2Copyright 2017 Hermann Krumrey <hermann@krumreyh.com> 

3 

4This file is part of bundesliga-tippspiel. 

5 

6bundesliga-tippspiel is free software: you can redistribute it and/or modify 

7it under the terms of the GNU General Public License as published by 

8the Free Software Foundation, either version 3 of the License, or 

9(at your option) any later version. 

10 

11bundesliga-tippspiel is distributed in the hope that it will be useful, 

12but WITHOUT ANY WARRANTY; without even the implied warranty of 

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

14GNU General Public License for more details. 

15 

16You should have received a copy of the GNU General Public License 

17along with bundesliga-tippspiel. If not, see <http://www.gnu.org/licenses/>. 

18LICENSE""" 

19 

20from jerrycan.base import db 

21from jerrycan.db.User import User 

22from jerrycan.db.ModelMixin import ModelMixin 

23from bundesliga_tippspiel.Config import Config 

24 

25 

26class MatchdayWinner(ModelMixin, db.Model): 

27 """ 

28 Model that describes the 'matchday_winners' SQL table 

29 """ 

30 

31 def __init__(self, *args, **kwargs): 

32 """ 

33 Initializes the Model 

34 :param args: The constructor arguments 

35 :param kwargs: The constructor keyword arguments 

36 """ 

37 super().__init__(*args, **kwargs) 

38 

39 __tablename__ = "matchday_winners" 

40 

41 league: str = db.Column(db.String(255), primary_key=True) 

42 season: int = db.Column(db.Integer, primary_key=True) 

43 matchday: int = db.Column(db.Integer, primary_key=True) 

44 user_id: int = db.Column( 

45 db.Integer, 

46 db.ForeignKey("users.id"), 

47 nullable=True 

48 ) 

49 

50 user: User = db.relationship( 

51 "User", backref=db.backref("matchday_winners", cascade="all, delete") 

52 )