fix: reduce signup bonus to ten points

This commit is contained in:
QiuSW
2026-07-18 15:00:04 +08:00
parent 4a0becbb4d
commit 83fa541b2a
25 changed files with 126 additions and 82 deletions
+1 -1
View File
@@ -318,7 +318,7 @@ class SignupBonusGrant(models.Model):
on_delete=models.PROTECT,
related_name="signup_bonus_grant",
)
points_granted = models.BigIntegerField("赠送点数", default=100)
points_granted = models.BigIntegerField("赠送点数", default=10)
created_at = models.DateTimeField("创建时间", auto_now_add=True)
class Meta: