feat:添加获取it地址

This commit is contained in:
XIE7654
2025-08-14 10:09:51 +08:00
parent a88f272c19
commit 3cf4410a8a
6 changed files with 63 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 5.2.1 on 2025-08-13 03:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("system", "0002_alter_dept_creator_alter_dept_is_deleted_and_more"),
]
operations = [
migrations.AddField(
model_name="loginlog",
name="location",
field=models.CharField(
blank=True, db_comment="<IP> 地理位置", default="", max_length=200
),
),
]