playtime field as int over float
All checks were successful
Build and Push Docker Image / build (push) Successful in 14s
All checks were successful
Build and Push Docker Image / build (push) Successful in 14s
This commit is contained in:
parent
8fecd43f31
commit
a06966fc81
@ -50,7 +50,7 @@ class Player(Model):
|
||||
username = fields.CharField(max_length=20, unique=True)
|
||||
last_connection = fields.DatetimeField()
|
||||
last_disconnection = fields.DatetimeField()
|
||||
play_time_seconds = fields.DecimalField(default=0.0)
|
||||
play_time_seconds = fields.IntField(default=0)
|
||||
|
||||
class Meta:
|
||||
table = "players"
|
||||
|
Reference in New Issue
Block a user