Trees | Indices | Help |
---|
|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
id = db.Column(db.Integer, primary_key= True)
|
|||
name = db.Column(db.String(100), nullable= False)
|
|||
stream = db.Column(db.String(100), nullable= False)
|
|||
version = db.Column(db.BigInteger, nullable= False)
|
|||
summary = db.Column(db.String(100), nullable= False)
|
|||
description = db.Column(db.Text)
|
|||
created_on = db.Column(db.Integer, nullable= True)
|
|||
yaml_b64 = db.Column(db.Text)
|
|||
copr_id = db.Column(db.Integer, db.ForeignKey("copr.id"))
|
|||
copr = db.relationship("Copr", backref= db.backref("modules"))
|
|||
__table_args__ = db.UniqueConstraint("copr_id", "name", "strea
|
|
|
|
|
|
|
Return numeric representation of status of this build
|
Return text representation of status of this build
|
|
__table_args__
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 | http://epydoc.sourceforge.net |