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)
|
|||
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 0x202aad0; 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 Returns repos of this copr as a list of strings |
|||
description_or_not_filled | |||
instructions_or_not_filled | |||
active_chroots Returns list of active mock_chroots of this copr |
|||
build_count Return number of builds in this copr |
|||
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_listReturns repos of this copr as a list of strings
|
description_or_not_filled
|
instructions_or_not_filled
|
active_chrootsReturns list of active mock_chroots of this copr
|
build_countReturn number of builds in this copr
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Jan 28 00:38:15 2014 | http://epydoc.sourceforge.net |