automated push from the terminal

This commit is contained in:
Software Shinobi
2026-02-09 11:06:47 -05:00
parent 2f5926a171
commit fe556105b9
86 changed files with 17183 additions and 2 deletions

15
tournament/models.py Normal file
View File

@@ -0,0 +1,15 @@
from django.db import models
class Tournament(models.Model):
name = models.CharField("name", max_length=240)
description = models.CharField("description", max_length=240)
rental_price = models.FloatField("rental_price", default=999.99)
rented_user_id = models.IntegerField("rented_user_id")
def __str__(self):
return self.name