From abdebf01d040e54ac1b3369f239efc32a3f5f839 Mon Sep 17 00:00:00 2001 From: dleadbetter Date: Tue, 7 Jan 2025 16:12:37 -0500 Subject: [PATCH] #141 - Updating the names of the COVE collections to "COVE Texts" and "COVE Images" --- .../20250107210556_rename_cove_collections.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 supabase/migrations/20250107210556_rename_cove_collections.sql diff --git a/supabase/migrations/20250107210556_rename_cove_collections.sql b/supabase/migrations/20250107210556_rename_cove_collections.sql new file mode 100644 index 0000000..d33be3b --- /dev/null +++ b/supabase/migrations/20250107210556_rename_cove_collections.sql @@ -0,0 +1,9 @@ +UPDATE public.collections + SET name = 'COVE Texts' + WHERE id = '2a8279d6-feab-4cd8-b7b0-504d2893dd4a' +; + +UPDATE public.collections + SET name = 'COVE Images' + WHERE id = 'b0245009-963a-46ba-a8b5-b11add9ceb1a' +; \ No newline at end of file