Trees | Indices | Help |
---|
|
Represents a single copr (private repo with builds, mock chroots, etc.).
|
|||
query_class An override for SQLAlchemy query used to do fulltext search. |
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
id = db.Column(db.Integer, primary_key= True)
|
|||
name = db.Column(db.String(100), nullable= False)
|
|||
repos = db.Column(db.Text)
|
|||
created_on = db.Column(db.Integer)
|
|||
description = db.Column(db.Text)
|
|||
instructions = db.Column(db.Text)
|
|||
deleted = db.Column(db.Boolean, default= False)
|
|||
playground = db.Column(db.Boolean, default= False)
|
|||
owner_id = db.Column(db.Integer, db.ForeignKey("user.id"))
|
|||
owner = db.relationship("User", backref= db.backref("coprs"))
|
|||
mock_chroots = association_proxy("copr_chroots", "mock_chroot")
|
|||
__mapper_args__ = {"order_by": created_on.desc()}
|
|||
__mapper__ = <Mapper at 0xb481c3f0; Copr>
|
|||
__table__ = Table('copr', MetaData(bind=None), Column('id', In
|
|||
__tablename__ =
|
|||
_sa_class_manager = <ClassManager of <class 'coprs.models.Copr
|
|||
Inherited from Inherited from |
|
|||
repos_list Return repos of this copr as a list of strings |
|||
active_chroots Return list of active mock_chroots of this copr |
|||
build_count Return number of builds in this copr |
|||
modified_chroots Return list of chroots which has been modified |
|||
Inherited from Inherited from |
|
A simple constructor that allows initialization from kwargs. Sets attributes on the constructed instance using the names and values in ``kwargs``. Only keys that are present as attributes of the instance's class are allowed. These could be, for example, any mapped columns or relationships.
|
|
__table__
|
_sa_class_manager
|
|
repos_listReturn repos of this copr as a list of strings
|
active_chrootsReturn list of active mock_chroots of this copr
|
build_countReturn number of builds in this copr
|
modified_chrootsReturn list of chroots which has been modified
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Jun 17 03:42:52 2015 | http://epydoc.sourceforge.net |