mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 19:38:21 -05:00
10 lines
256 B
Python
10 lines
256 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)
|
|
location = models.CharField(max_length=16)
|
|
result = models.TextField()
|