task.py 238 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from .base import Base
  4. from django.db import models
  5. '''
  6. '''
  7. class Task(Base):
  8. playbook_name = models.CharField(max_length=35)
  9. last_execution = models.DateTimeField()