@@ -201,7 +201,7 @@ def downgrade() -> None:
201201 "search_vector" ,
202202 postgresql .TSVECTOR (),
203203 sa .Computed (
204- "to_tsvector('english'::regconfig, name || ' ') || "
204+ "to_tsvector('english'::regconfig, name || ' ' || "
205205 "COALESCE(json_extract_path_text(source_params, VARIADIC ARRAY['table_name']), '') || ' ' || "
206206 "COALESCE(json_extract_path_text(target_params, VARIADIC ARRAY['table_name']), '') || ' ' || "
207207 "COALESCE(json_extract_path_text(source_params, VARIADIC ARRAY['directory_path']), '') || ' ' || "
@@ -210,7 +210,7 @@ def downgrade() -> None:
210210 "COALESCE(translate(json_extract_path_text(source_params, VARIADIC ARRAY['table_name']), './', ' '), '') || ' ' || "
211211 "COALESCE(translate(json_extract_path_text(target_params, VARIADIC ARRAY['table_name']), './', ' '), '') || ' ' || "
212212 "COALESCE(translate(json_extract_path_text(source_params, VARIADIC ARRAY['directory_path']), './', ' '), '') || ' ' || "
213- "COALESCE(translate(json_extract_path_text(target_params, VARIADIC ARRAY['directory_path']), './', ' '), '')" ,
213+ "COALESCE(translate(json_extract_path_text(target_params, VARIADIC ARRAY['directory_path']), './', ' '), '')) " ,
214214 persisted = True ,
215215 ),
216216 autoincrement = False ,
0 commit comments