| Trees | Indices | Help | 
|---|
| 
       | 
  
Representation of one build in one copr
    
  | 
|||
      
  | 
  |||
      
  | 
  |||
| 
     Inherited from  Inherited from   | 
  |||
    
  | 
|||
        id = db.Column(db.Integer, primary_key= True)
     | 
  |||
        pkgs = db.Column(db.Text)
     | 
  |||
        canceled = db.Column(db.Boolean, default= False)
     | 
  |||
        chroots = db.Column(db.Text, nullable= False)
     | 
  |||
        repos = db.Column(db.Text)
     | 
  |||
        submitted_on = db.Column(db.Integer, nullable= False)
     | 
  |||
        started_on = db.Column(db.Integer)
     | 
  |||
        ended_on = db.Column(db.Integer)
     | 
  |||
        results = db.Column(db.Text)
     | 
  |||
        status = db.Column(db.Integer)
     | 
  |||
        memory_reqs = db.Column(db.Integer, default= constants.DEFAULT
     | 
  |||
        timeout = db.Column(db.Integer, default= constants.DEFAULT_BUI
     | 
  |||
        user_id = db.Column(db.Integer, db.ForeignKey('user.id'))
     | 
  |||
        user = db.relationship('User', backref= db.backref('builds'))
     | 
  |||
        copr_id = db.Column(db.Integer, db.ForeignKey('copr.id'))
     | 
  |||
        copr = db.relationship('Copr', backref= db.backref('builds'))
     | 
  |||
    
  | 
|||
| 
     Inherited from   | 
  |||
    
  | 
|||
  
 Return text representation of status of this build 
  | 
  
 Find out if this build is cancelable. ATM, build is cancelable only if it wasn't grabbed by backend. 
  | 
    
  | 
|||
  memory_reqs
  | 
  timeout
  | 
| Trees | Indices | Help | 
|---|
| Generated by Epydoc 3.0.1 on Tue Sep 10 09:30:18 2013 | http://epydoc.sourceforge.net |