mirror of
https://github.com/Rushilwiz/house-party.git
synced 2025-04-19 19:10:18 -04:00
25 lines
712 B
Python
25 lines
712 B
Python
from django.db import models
|
|
import string
|
|
import random
|
|
|
|
def generate_unique_code():
|
|
length = 6
|
|
|
|
while True:
|
|
code = ''.join(random.choices(string.ascii_uppercase, k=length))
|
|
if Room.objects.filter(code=code).count() == 0:
|
|
break
|
|
|
|
return code
|
|
|
|
# Create your models here.
|
|
class Room(models.Model):
|
|
code = models.CharField(max_length=8, default="", unique=True)
|
|
host = models.CharField(max_length=50, unique=True)
|
|
guest_can_pause = models.BooleanField(null=False, default=False)
|
|
votes_to_skip = models.IntegerField(null=False, default=0)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return f'Room ({self.code}'
|