Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from src import db 

2from .content_model import ContentType 

3 

4 

5class EngineModel(db.Model): 

6 """ 

7 Engine Model for storing content related details 

8 """ 

9 __tablename__ = "engine" 

10 

11 engine = db.Column(db.String, primary_key=True) 

12 content_type = db.Column(db.Enum(ContentType), primary_key=True) 

13 last_launch_date = db.Column(db.DateTime)