mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-29 16:41:56 +00:00
8 lines
177 B
Python
8 lines
177 B
Python
from django.db import models
|
|
from utils.models import JSONField
|
|
|
|
|
|
class SysOptions(models.Model):
|
|
key = models.TextField(unique=True, db_index=True)
|
|
value = JSONField()
|