Skip to content

Commit

Permalink
Changing choices adds a migration
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Mar 23, 2024
1 parent d6e2c29 commit 58e93ab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions radis/rag/migrations/0002_alter_ragjob_provider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.11 on 2024-03-23 12:46

from django.db import migrations, models
import radis.rag.models


class Migration(migrations.Migration):

dependencies = [
('rag', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='ragjob',
name='provider',
field=models.CharField(choices=[('Vespa BM25', 'Vespa BM25')], default=radis.rag.models.get_default_provider, max_length=100),
),
]

0 comments on commit 58e93ab

Please sign in to comment.