From 6f5873b07205b99ab94bdb2db72f32b407a97011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Wed, 26 Jun 2024 18:30:41 +0200 Subject: [PATCH] DEV: Use Rails 7.0 instead of 7.1 in migrations --- db/migrate/20240624135356_llm_model_custom_params.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20240624135356_llm_model_custom_params.rb b/db/migrate/20240624135356_llm_model_custom_params.rb index 3ad7340e..ce47b2c2 100644 --- a/db/migrate/20240624135356_llm_model_custom_params.rb +++ b/db/migrate/20240624135356_llm_model_custom_params.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -class LlmModelCustomParams < ActiveRecord::Migration[7.1] +class LlmModelCustomParams < ActiveRecord::Migration[7.0] def change add_column :llm_models, :provider_params, :jsonb end