MCPcopy Create free account
hub / github.com/alphagov/notifications-api / FactProcessingTime

Class FactProcessingTime

app/models.py:2417–2424  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2415 ),
2416 )
2417
2418
2419class FactProcessingTime(db.Model):
2420 __tablename__ = "ft_processing_time"
2421
2422 bst_date = db.Column(db.Date, index=True, primary_key=True, nullable=False)
2423 messages_total = db.Column(db.Integer(), nullable=False)
2424 messages_within_10_secs = db.Column(db.Integer(), nullable=False)
2425 created_at = db.Column(db.DateTime, nullable=False, default=datetime.datetime.utcnow)
2426 updated_at = db.Column(db.DateTime, nullable=True, onupdate=datetime.datetime.utcnow)
2427

Calls

no outgoing calls

Tested by 1