31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Generated by Django 5.2.8 on 2025-12-30 07:43
|
|
|
|
import django.db.models.deletion
|
|
import uuid
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('teams_app', '0010_remove_team_status'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='TeamInvitationToken',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('uuid', models.CharField(default=uuid.uuid4, max_length=100, unique=True)),
|
|
('token_hash', models.CharField(max_length=255, unique=True)),
|
|
('workflow_status', models.CharField(choices=[('pending', 'Ожидает обработки'), ('active', 'Активен'), ('error', 'Ошибка')], default='pending', max_length=20)),
|
|
('expires_at', models.DateTimeField()),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('invitation', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='tokens', to='teams_app.teaminvitation')),
|
|
],
|
|
options={
|
|
'db_table': 'teams_invitation_token',
|
|
},
|
|
),
|
|
]
|