You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.7 KiB
36 lines
1.7 KiB
# Generated by Django 5.1 on 2025-09-17 07:49
|
|
|
|
import django.db.models.deletion
|
|
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='APIKey',
|
|
fields=[
|
|
('id', models.CharField(editable=False, max_length=150, primary_key=True, serialize=False, unique=True)),
|
|
('prefix', models.CharField(editable=False, max_length=8, unique=True)),
|
|
('hashed_key', models.CharField(editable=False, max_length=150)),
|
|
('created', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('name', models.CharField(default=None, help_text='A free-form name for the API key. Need not be unique. 50 characters max.', max_length=50)),
|
|
('revoked', models.BooleanField(blank=True, default=False, help_text='If the API key is revoked, clients cannot use it anymore. (This cannot be undone.)')),
|
|
('expiry_date', models.DateTimeField(blank=True, help_text='Once API key expires, clients cannot use it anymore.', null=True, verbose_name='Expires')),
|
|
('user', models.ForeignKey(help_text='The user this API key belongs to', on_delete=django.db.models.deletion.CASCADE, related_name='api_keys', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'verbose_name': 'API Key',
|
|
'verbose_name_plural': 'API Keys',
|
|
'ordering': ('-created',),
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|
|
|