# -*- coding: utf-8 -*- from __future__ import unicode_literals from .base import Base from django.db import models ''' ''' class Task(Base): playbook_name = models.CharField(max_length=35) last_execution = models.DateTimeField()