11 lines
246 B
Python
11 lines
246 B
Python
from django.db import models
|
|
|
|
|
|
class Score(models.Model):
|
|
username = models.CharField(max_length=100)
|
|
points = models.IntegerField()
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
class Meta:
|
|
ordering = ["-points"]
|