16428f2c16
Models, AI assistant, and UI now show diskussionsfertige Antworten without titles; shared search partial fixes aria-label rendering. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
704 B
Python
25 lines
704 B
Python
# Generated by Django 5.2.15 on 2026-07-07 20:47
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('claims', '0007_possible_answers'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='possibleanswer',
|
|
name='answer',
|
|
field=models.TextField(verbose_name='Antwort'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='possibleanswer',
|
|
name='claim',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='possible_answers', to='claims.claim', verbose_name='Behauptung'),
|
|
),
|
|
]
|