diff --git a/src/khoj/database/migrations/0068_alter_agent_output_modes.py b/src/khoj/database/migrations/0068_alter_agent_output_modes.py index 4a350984..ebfa0d78 100644 --- a/src/khoj/database/migrations/0068_alter_agent_output_modes.py +++ b/src/khoj/database/migrations/0068_alter_agent_output_modes.py @@ -9,16 +9,15 @@ class Migration(migrations.Migration): ("database", "0067_alter_agent_style_icon"), ] - operations = [ - # migrations.AlterField( - # model_name="agent", - # name="output_modes", - # field=django.contrib.postgres.fields.ArrayField( - # base_field=models.CharField( - # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 - # ), - # default=list, - # size=None, - # ), - # ), - ] + operations = [] # type: ignore + # migrations.AlterField( + # model_name="agent", + # name="output_modes", + # field=django.contrib.postgres.fields.ArrayField( + # base_field=models.CharField( + # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 + # ), + # default=list, + # size=None, + # ), + # ), diff --git a/src/khoj/database/migrations/0070_alter_agent_input_tools_alter_agent_output_modes.py b/src/khoj/database/migrations/0070_alter_agent_input_tools_alter_agent_output_modes.py index e9b8446f..35a4e9ba 100644 --- a/src/khoj/database/migrations/0070_alter_agent_input_tools_alter_agent_output_modes.py +++ b/src/khoj/database/migrations/0070_alter_agent_input_tools_alter_agent_output_modes.py @@ -9,38 +9,37 @@ class Migration(migrations.Migration): ("database", "0069_webscraper_serverchatsettings_web_scraper"), ] - operations = [ - # migrations.AlterField( - # model_name="agent", - # name="input_tools", - # field=django.contrib.postgres.fields.ArrayField( - # base_field=models.CharField( - # choices=[ - # ("general", "General"), - # ("online", "Online"), - # ("notes", "Notes"), - # ("summarize", "Summarize"), - # ("webpage", "Webpage"), - # ], - # max_length=200, - # ), - # blank=True, - # default=list, - # null=True, - # size=None, - # ), - # ), - # migrations.AlterField( - # model_name="agent", - # name="output_modes", - # field=django.contrib.postgres.fields.ArrayField( - # base_field=models.CharField( - # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 - # ), - # blank=True, - # default=list, - # null=True, - # size=None, - # ), - # ), - ] + operations = [] # type: ignore + # migrations.AlterField( + # model_name="agent", + # name="input_tools", + # field=django.contrib.postgres.fields.ArrayField( + # base_field=models.CharField( + # choices=[ + # ("general", "General"), + # ("online", "Online"), + # ("notes", "Notes"), + # ("summarize", "Summarize"), + # ("webpage", "Webpage"), + # ], + # max_length=200, + # ), + # blank=True, + # default=list, + # null=True, + # size=None, + # ), + # ), + # migrations.AlterField( + # model_name="agent", + # name="output_modes", + # field=django.contrib.postgres.fields.ArrayField( + # base_field=models.CharField( + # choices=[("text", "Text"), ("image", "Image"), ("automation", "Automation")], max_length=200 + # ), + # blank=True, + # default=list, + # null=True, + # size=None, + # ), + # ),