feat: IP & device rate limits
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 6.0.3 on 2026-03-13 21:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0004_alter_user_groups_alter_user_phone_number_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='phoneotp',
|
||||
name='device_signal',
|
||||
field=models.CharField(blank=True, db_index=True, default='', max_length=64),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='phoneotp',
|
||||
name='request_ip',
|
||||
field=models.GenericIPAddressField(blank=True, db_index=True, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user