Package coprs :: Module models :: Class Batch
[hide private]
[frames] | no frames]

Class Batch

source code


Instance Methods [hide private]
 
finished(self) source code
Class Variables [hide private]
  id = db.Column(db.Integer, primary_key= True)
  blocked_by_id = db.Column(db.Integer, db.ForeignKey("batch.id"...
  blocked_by = db.relationship("Batch", remote_side= [id])
Method Details [hide private]

finished(self)

source code 
Decorators:
  • @property

Class Variable Details [hide private]

blocked_by_id

Value:
db.Column(db.Integer, db.ForeignKey("batch.id"), nullable= True)