bornhack-website/ircbot/models.py
2017-01-30 12:05:11 +01:00

11 lines
319 B
Python

from __future__ import unicode_literals
from utils.models import UUIDModel, CreatedUpdatedModel
from django.db import models
class OutgoingIrcMessage(CreatedUpdatedModel):
target = models.CharField(max_length=100)
message = models.CharField(max_length=200)
processed = models.BooleanField(default=False)