expephalon/core/models/cron.py
Klaus-Uwe Mitterer 1efda993fd Create LongCharField to make code prettier
Create Models for clients and dummy model for brands
2020-05-27 15:06:38 +02:00

8 lines
247 B
Python

from django.db.models import Model, DateTimeField, BooleanField
from core.fields.base import LongCharField
class CronLog(Model):
task = LongCharField()
execution = DateTimeField(auto_now_add=True)
locked = BooleanField(default=True)