20 lines
652 B
Python
20 lines
652 B
Python
import uuid
|
|
|
|
from django.db import models
|
|
from colorfield.fields import ColorField
|
|
|
|
|
|
class Mood(models.Model):
|
|
mood_id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
|
|
name = models.CharField(max_length=30)
|
|
description = models.CharField(max_length=150, blank=False, null=False)
|
|
|
|
color = ColorField(format='hex')
|
|
|
|
is_available = models.BooleanField(default=True) # Is available to go
|
|
is_reliable = models.BooleanField(default=True) # Will always do the same in this mood
|
|
is_going = models.BooleanField(default=False) # Is going to the cafeteria
|
|
|
|
def __str__(self):
|
|
return self.name
|