From 6d6d6a1b6232cd142c45c495be9873cf5a4aae8b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 3 Jun 2026 12:59:49 +0000 Subject: [PATCH] delete tempfile --- migration-correction-script.sh | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 migration-correction-script.sh diff --git a/migration-correction-script.sh b/migration-correction-script.sh deleted file mode 100644 index 276eaf6..0000000 --- a/migration-correction-script.sh +++ /dev/null @@ -1,5 +0,0 @@ -set -ex -for f in src/app/db/migrations/*.sql; do - hash=$(sha256sum "$f" | awk '{print $1}') - echo "INSERT INTO __drizzle_migrations (hash, created_at) SELECT '$hash', extract(epoch from now())::bigint * 1000 WHERE NOT EXISTS (SELECT 1 FROM __drizzle_migrations WHERE hash = '$hash');" -done