mirror of
https://github.com/bspeice/itcs4180
synced 2025-07-11 18:55:10 -04:00
11 lines
294 B
Python
11 lines
294 B
Python
from django.db import models
|
|
|
|
class Location(models.Model):
|
|
|
|
key = models.CharField(max_length=32)
|
|
name = models.CharField(max_length=32)
|
|
riddle = models.CharField(max_length=512)
|
|
riddle_image_url = models.URLField()
|
|
location = models.CharField(max_length=16)
|
|
result = models.TextField()
|