Skip to content

Commit

Permalink
Add DB migration from making bi_encode configs optional in #834
Browse files Browse the repository at this point in the history
  • Loading branch information
debanjum committed Jul 11, 2024
1 parent 3a75838 commit cbae8b6
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 4.2.11 on 2024-07-08 09:27

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("database", "0051_merge_20240702_1220"),
]

operations = [
migrations.AlterField(
model_name="searchmodelconfig",
name="bi_encoder_docs_encode_config",
field=models.JSONField(blank=True, default=dict),
),
migrations.AlterField(
model_name="searchmodelconfig",
name="bi_encoder_model_config",
field=models.JSONField(blank=True, default=dict),
),
migrations.AlterField(
model_name="searchmodelconfig",
name="bi_encoder_query_encode_config",
field=models.JSONField(blank=True, default=dict),
),
]

0 comments on commit cbae8b6

Please sign in to comment.