From 73e595ea03adf8adfa5205568cf3c5f272bb4959 Mon Sep 17 00:00:00 2001 From: Tayeb Mokni Date: Tue, 26 May 2026 23:36:26 +0200 Subject: [PATCH] fix(migrations): renumber phpass_hash from 000033 to 000035 (duplicate slot) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #478 and #471 both landed migration 000033 — phpass_hash and password_reset_tokens. The migrate runner sees the duplicate and refuses to load the source. Every PR in the queue has been failing test-go on this for hours. Renumber phpass to 000035 (next free after 000034_magic_link_tokens). No content changes; just the file names. Signed-off-by: Tayeb Mokni --- .../{000033_phpass_hash.down.sql => 000035_phpass_hash.down.sql} | 0 .../{000033_phpass_hash.up.sql => 000035_phpass_hash.up.sql} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename migrations/{000033_phpass_hash.down.sql => 000035_phpass_hash.down.sql} (100%) rename migrations/{000033_phpass_hash.up.sql => 000035_phpass_hash.up.sql} (100%) diff --git a/migrations/000033_phpass_hash.down.sql b/migrations/000035_phpass_hash.down.sql similarity index 100% rename from migrations/000033_phpass_hash.down.sql rename to migrations/000035_phpass_hash.down.sql diff --git a/migrations/000033_phpass_hash.up.sql b/migrations/000035_phpass_hash.up.sql similarity index 100% rename from migrations/000033_phpass_hash.up.sql rename to migrations/000035_phpass_hash.up.sql