1
1
"""
2
- Models for MySQL
2
+ Models for SQLite database
3
3
4
4
"""
5
5
@@ -58,7 +58,9 @@ class TestCase(db.Model):
58
58
id : Mapped [int ] = mapped_column (primary_key = True , autoincrement = True )
59
59
name : Mapped [str ] = mapped_column (String (255 ), nullable = False )
60
60
description : Mapped [str ] = mapped_column (String (500 ), nullable = True )
61
- executions : Mapped [list ["Execution" ]] = relationship ("Execution" , back_populates = "test_case" )
61
+ executions : Mapped [list ["Execution" ]] = relationship (
62
+ "Execution" , back_populates = "test_case"
63
+ )
62
64
63
65
def __init__ (self , name , description ):
64
66
self .name = name
@@ -84,7 +86,9 @@ class Asset(db.Model):
84
86
85
87
id : Mapped [int ] = mapped_column (primary_key = True , autoincrement = True )
86
88
name : Mapped [str ] = mapped_column (String (255 ), nullable = False )
87
- executions : Mapped [list ["Execution" ]] = relationship ("Execution" , back_populates = "asset" )
89
+ executions : Mapped [list ["Execution" ]] = relationship (
90
+ "Execution" , back_populates = "asset"
91
+ )
88
92
89
93
def __init__ (self , name ):
90
94
self .name = name
@@ -109,7 +113,9 @@ class Execution(db.Model):
109
113
110
114
id : Mapped [int ] = mapped_column (primary_key = True , autoincrement = True )
111
115
test_case_id : Mapped [int ] = mapped_column (ForeignKey ("test_case.id" ))
112
- test_case : Mapped ["TestCase" ] = relationship ("TestCase" , back_populates = "executions" )
116
+ test_case : Mapped ["TestCase" ] = relationship (
117
+ "TestCase" , back_populates = "executions"
118
+ )
113
119
asset_id : Mapped [int ] = mapped_column (ForeignKey ("asset.id" ))
114
120
asset : Mapped ["Asset" ] = relationship ("Asset" , back_populates = "executions" )
115
121
timestamp : Mapped [datetime ] = mapped_column (DateTime , default = datetime .utcnow )
0 commit comments