Trees | Indices | Help |
---|
|
|
|||
Inherited from |
|
|||
|
|||
|
|||
Inherited from Inherited from 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.Integer, 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"))
|
|||
__mapper__ = <Mapper at 0x7fee489f8910; Module>
|
|||
__table__ = Table('module', MetaData(bind=None), Column('id',
|
|||
__tablename__ =
|
|||
_sa_class_manager = <ClassManager of <class 'coprs.models.Modu
|
|||
Inherited from Inherited from |
|
|||
yaml | |||
modulemd | |||
nsv | |||
full_name | |||
action | |||
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
|
|
yaml
|
modulemd
|
nsv
|
full_name
|
action
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Dec 5 22:37:18 2016 | http://epydoc.sourceforge.net |