32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
# Generated by Django 5.0.7 on 2024-07-12 03:54
|
|
|
|
import access.fields
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AuthToken',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False, unique=True)),
|
|
('note', models.CharField(blank=True, default=None, max_length=50, null=True)),
|
|
('token', models.CharField(db_index=True, max_length=64, unique=True, verbose_name='Auth Token')),
|
|
('expires', models.DateTimeField(verbose_name='Expiry Date')),
|
|
('created', access.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False)),
|
|
('modified', access.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False)),
|
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
]
|