0019_alter_qa_category.py 445 B

12345678910111213141516171819
  1. # Generated by Django 5.0.6 on 2024-08-01 07:46
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('commons', '0018_qa_category_alter_llmbackend_client_type'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='qa',
  10. name='category',
  11. field=models.CharField(blank=True, db_index=True, max_length=256, null=True),
  12. ),
  13. ]