From bea41a6732a9662eda5f0dc3980a5ec1cc502d07 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 25 Apr 2025 09:15:08 -0700 Subject: [PATCH] koji / staging sync: increase sequences to be higher than prod Signed-off-by: Kevin Fenzi --- .../manual/staging-sync/templates/koji-reset-staging.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql index 7c4a19f505..e9372e7594 100644 --- a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql +++ b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql @@ -31,9 +31,9 @@ delete from imageinfo_listing; -- bump sequences (not strictly needed anymore) select now() as time, 'bumping sequences' as msg; -alter sequence task_id_seq restart with 130000000; -alter sequence repo_id_seq restart with 130000000; -alter sequence imageinfo_id_seq restart with 13000000; +alter sequence task_id_seq restart with 140000000; +alter sequence repo_id_seq restart with 140000000; +alter sequence imageinfo_id_seq restart with 14000000; -- truncate sessions select now() as time, 'truncating sessions' as msg;