38775-vm/core/migrations/0001_initial.py
2026-02-26 00:24:17 +00:00

42 lines
1.8 KiB
Python

# Generated by Django 5.2.7 on 2026-02-25 23:18
import django.db.models.deletion
import uuid
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='MCPToolRequest',
fields=[
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('tool_name', models.CharField(max_length=100)),
('arguments', models.JSONField()),
('status', models.CharField(choices=[('PENDING', 'Pending'), ('SENT', 'Sent'), ('ERROR', 'Error')], default='PENDING', max_length=10)),
('slack_channel', models.CharField(blank=True, max_length=50)),
('slack_ts', models.CharField(blank=True, help_text='Slack message timestamp', max_length=50)),
('response_json', models.JSONField(blank=True, null=True)),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
],
),
migrations.CreateModel(
name='HumanResponse',
fields=[
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('text', models.TextField()),
('user_name', models.CharField(blank=True, max_length=100)),
('file_url', models.URLField(blank=True, max_length=500, null=True)),
('created_at', models.DateTimeField(auto_now_add=True)),
('request', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='responses', to='core.mcptoolrequest')),
],
),
]