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.
25 lines
735 B
25 lines
735 B
# Generated by Django 4.2.11 on 2024-05-31 15:47
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0062_tournament_publish_tournament_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='FailedApiCall',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
|
('date', models.DateTimeField()),
|
|
('type', models.CharField(max_length=50)),
|
|
('call_id', models.UUIDField()),
|
|
('api_call', models.JSONField()),
|
|
('error', models.TextField()),
|
|
],
|
|
),
|
|
]
|
|
|