From e1c689d1a7e600529845471bacc027d32ee6d94b Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Sat, 8 Aug 2026 21:04:58 +0200 Subject: [PATCH] chore(migrations): renumber 021-023 to 023-025 to clear the collision with main MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit main independently shipped 021_hashtag_counts_respect_bans and 022_client_upload_idempotency. sqlx::migrate! embeds ./migrations and refuses two files per version, so these three had to move before the branch could merge at all. Contents are untouched — only the version prefixes change. Renumbering (rather than renumbering main's) is the safe direction: main is already deployed, so its 021 and 022 are applied in production and their versions are now immutable. --- ...ivative_attempts.down.sql => 023_derivative_attempts.down.sql} | 0 ..._derivative_attempts.up.sql => 023_derivative_attempts.up.sql} | 0 ...eed_scalar_counts.down.sql => 024_feed_scalar_counts.down.sql} | 0 ...22_feed_scalar_counts.up.sql => 024_feed_scalar_counts.up.sql} | 0 ...n_decay.down.sql => 025_reserved_names_and_pin_decay.down.sql} | 0 ...d_pin_decay.up.sql => 025_reserved_names_and_pin_decay.up.sql} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename backend/migrations/{021_derivative_attempts.down.sql => 023_derivative_attempts.down.sql} (100%) rename backend/migrations/{021_derivative_attempts.up.sql => 023_derivative_attempts.up.sql} (100%) rename backend/migrations/{022_feed_scalar_counts.down.sql => 024_feed_scalar_counts.down.sql} (100%) rename backend/migrations/{022_feed_scalar_counts.up.sql => 024_feed_scalar_counts.up.sql} (100%) rename backend/migrations/{023_reserved_names_and_pin_decay.down.sql => 025_reserved_names_and_pin_decay.down.sql} (100%) rename backend/migrations/{023_reserved_names_and_pin_decay.up.sql => 025_reserved_names_and_pin_decay.up.sql} (100%) diff --git a/backend/migrations/021_derivative_attempts.down.sql b/backend/migrations/023_derivative_attempts.down.sql similarity index 100% rename from backend/migrations/021_derivative_attempts.down.sql rename to backend/migrations/023_derivative_attempts.down.sql diff --git a/backend/migrations/021_derivative_attempts.up.sql b/backend/migrations/023_derivative_attempts.up.sql similarity index 100% rename from backend/migrations/021_derivative_attempts.up.sql rename to backend/migrations/023_derivative_attempts.up.sql diff --git a/backend/migrations/022_feed_scalar_counts.down.sql b/backend/migrations/024_feed_scalar_counts.down.sql similarity index 100% rename from backend/migrations/022_feed_scalar_counts.down.sql rename to backend/migrations/024_feed_scalar_counts.down.sql diff --git a/backend/migrations/022_feed_scalar_counts.up.sql b/backend/migrations/024_feed_scalar_counts.up.sql similarity index 100% rename from backend/migrations/022_feed_scalar_counts.up.sql rename to backend/migrations/024_feed_scalar_counts.up.sql diff --git a/backend/migrations/023_reserved_names_and_pin_decay.down.sql b/backend/migrations/025_reserved_names_and_pin_decay.down.sql similarity index 100% rename from backend/migrations/023_reserved_names_and_pin_decay.down.sql rename to backend/migrations/025_reserved_names_and_pin_decay.down.sql diff --git a/backend/migrations/023_reserved_names_and_pin_decay.up.sql b/backend/migrations/025_reserved_names_and_pin_decay.up.sql similarity index 100% rename from backend/migrations/023_reserved_names_and_pin_decay.up.sql rename to backend/migrations/025_reserved_names_and_pin_decay.up.sql