mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-07-05 07:54:37 +02:00
Routerfleet integration
This commit is contained in:
parent
6ffa1abb15
commit
31fc3a1098
6 changed files with 127 additions and 5 deletions
27
user_manager/migrations/0003_authenticationtoken.py
Normal file
27
user_manager/migrations/0003_authenticationtoken.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Generated by Django 5.0.2 on 2024-04-03 16:45
|
||||
|
||||
import django.db.models.deletion
|
||||
import uuid
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('user_manager', '0002_remove_useracl_id_useracl_created_useracl_updated_and_more'),
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AuthenticationToken',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('created', models.DateTimeField(auto_now_add=True)),
|
||||
('updated', models.DateTimeField(auto_now=True)),
|
||||
('uuid', models.UUIDField(default=uuid.uuid4, editable=False)),
|
||||
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||||
],
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue