Skip to content

Commit 88ef336

Browse files
committed
fix: renumber migrations to fix staging deployment
- Rename 008_clean_invalid_data.sql to 007a_clean_invalid_data.sql - Rename 009_separate_official_metadata.sql back to 008_separate_official_metadata.sql - This fixes staging which already applied 008 when it was the metadata migration - Migrations are now: 001-007, 007a (cleanup), 008 (metadata separation)
1 parent 272ee93 commit 88ef336

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

internal/database/migrations/008_clean_invalid_data.sql renamed to internal/database/migrations/007a_clean_invalid_data.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- Migration 008: Clean up invalid data before applying stricter constraints in migration 009
1+
-- Migration 007a: Clean up invalid data before applying stricter constraints in migration 008
22
-- This migration removes or fixes data that would violate constraints introduced in the next migration
33

44
BEGIN;
@@ -27,11 +27,11 @@ BEGIN
2727

2828
-- Skip migration if we don't have the known bad data (indicates test environment)
2929
IF NOT has_known_bad_server THEN
30-
RAISE NOTICE 'Migration 008: Skipping cleanup - no known problematic data found (likely test/dev environment)';
30+
RAISE NOTICE 'Migration 007a: Skipping cleanup - no known problematic data found (likely test/dev environment)';
3131
RETURN; -- Exit early, don't run any cleanup
3232
END IF;
3333

34-
RAISE NOTICE 'Migration 008: Found known problematic data, proceeding with cleanup';
34+
RAISE NOTICE 'Migration 007a: Found known problematic data, proceeding with cleanup';
3535

3636
-- Count servers with invalid name format
3737
SELECT COUNT(*) INTO invalid_name_count
@@ -67,7 +67,7 @@ BEGIN
6767
OR value->>'version' = '';
6868

6969
-- Log the cleanup operations with safety check
70-
RAISE NOTICE 'Migration 008 Data Cleanup Plan:';
70+
RAISE NOTICE 'Migration 007a Data Cleanup Plan:';
7171
RAISE NOTICE ' Total servers in database: %', total_servers;
7272

7373
IF total_servers > 0 THEN

internal/database/migrations/009_separate_official_metadata.sql renamed to internal/database/migrations/008_separate_official_metadata.sql

File renamed without changes.

0 commit comments

Comments
 (0)