From 139a86351fc6bb8ab9eabe27d57b0413969a3ada Mon Sep 17 00:00:00 2001 From: Phil Snyder Date: Wed, 3 Jul 2024 09:26:55 -0700 Subject: [PATCH] CREATE OR REPLACE git repository to ensure it is always up-to-date --- snowflake/objects/deploy.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snowflake/objects/deploy.sql b/snowflake/objects/deploy.sql index be247b0b..72265356 100644 --- a/snowflake/objects/deploy.sql +++ b/snowflake/objects/deploy.sql @@ -62,7 +62,7 @@ USE DATABASE IDENTIFIER($database_identifier); Create an external stage over the RECOVER Git repository so that we can use EXECUTE IMMEDIATE FROM statements. */ -CREATE GIT REPOSITORY IF NOT EXISTS recover_git_repository +CREATE OR REPLACE GIT REPOSITORY recover_git_repository ORIGIN = 'https://github.com/Sage-Bionetworks/recover.git' API_INTEGRATION = RECOVER_GIT;