成绩建表
This commit is contained in:
@@ -6,9 +6,13 @@ class Score(Base):
|
||||
cid = Column(Integer
|
||||
,primary_key = True
|
||||
,autoincrement = True
|
||||
,comment ='考试序次'
|
||||
,comment ='编号'
|
||||
)
|
||||
score = Column(Float,nullable = False)
|
||||
score_num = Column(Integer
|
||||
,primary_key = True
|
||||
,comment ='考试序次'
|
||||
)
|
||||
score = Column(Integer,nullable = False)
|
||||
subject = Column(String(100)
|
||||
,nullable = False
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user