mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
Improve acl model
This commit is contained in:
18
vpn/migrations/0003_acllink_last_access_time.py
Normal file
18
vpn/migrations/0003_acllink_last_access_time.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated migration for adding last_access_time field
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('vpn', '0002_taskexecutionlog'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='acllink',
|
||||
name='last_access_time',
|
||||
field=models.DateTimeField(blank=True, help_text='Last time this link was accessed', null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user