mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
Added statistics cache
This commit is contained in:
22
vpn/migrations/0006_accesslog_acl_link_id.py
Normal file
22
vpn/migrations/0006_accesslog_acl_link_id.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated migration for AccessLog acl_link_id field
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('vpn', '0005_userstatistics'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='accesslog',
|
||||
name='acl_link_id',
|
||||
field=models.CharField(blank=True, editable=False, help_text='ID of the ACL link used', max_length=1024, null=True),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='accesslog',
|
||||
index=models.Index(fields=['acl_link_id'], name='vpn_accessl_acl_lin_b23c6e_idx'),
|
||||
),
|
||||
]
|
14
vpn/migrations/0007_merge_20250721_1345.py
Normal file
14
vpn/migrations/0007_merge_20250721_1345.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Generated by Django 5.1.7 on 2025-07-21 10:45
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('vpn', '0006_accesslog_acl_link_id'),
|
||||
('vpn', '0006_rename_vpn_usersta_user_id_1c7cd0_idx_vpn_usersta_user_id_512036_idx_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
]
|
Reference in New Issue
Block a user