chore: remove allowed_rate_limit from APIToken

This commit is contained in:
sangeethailango
2025-12-24 16:03:51 +05:30
parent d75efb3cfd
commit 3d7212bb68
2 changed files with 0 additions and 6 deletions

View File

@@ -20,11 +20,6 @@ class Migration(migrations.Migration):
old_name='IssueUserProperty',
new_name='ProjectUserProperty',
),
migrations.AddField(
model_name='apitoken',
name='allowed_rate_limit',
field=models.CharField(default='60/min', max_length=255),
),
migrations.AddField(
model_name='projectuserproperty',
name='preferences',

View File

@@ -32,7 +32,6 @@ class APIToken(BaseModel):
workspace = models.ForeignKey("db.Workspace", related_name="api_tokens", on_delete=models.CASCADE, null=True)
expired_at = models.DateTimeField(blank=True, null=True)
is_service = models.BooleanField(default=False)
allowed_rate_limit = models.CharField(max_length=255, default="60/min")
class Meta:
verbose_name = "API Token"