Skip to content

Commit

Permalink
Target library table rather than integration_library_configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernstein committed Dec 9, 2024
1 parent 592d411 commit b446928
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@
def upgrade() -> None:
conn = op.get_bind()
conn.execute(
"UPDATE integration_library_configurations set settings = settings::jsonb - 'facets_enabled_collection'"
)
conn.execute(
"UPDATE integration_library_configurations set settings = settings::jsonb - 'facets_default_collection'"
"UPDATE libraries set settings_dict = "
"settings_dict - array['facets_enabled_collection', 'facets_default_collection']"
)


Expand Down

0 comments on commit b446928

Please sign in to comment.