summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2009-02-07 15:48:37 +1100
committerJeremy Kerr <jk@ozlabs.org>2009-02-07 15:48:37 +1100
commit5f20247c07c17d266321d49042c525deafe65152 (patch)
treeda3f9a49e2b1e81e619521dcfc26d5f57fc053ce /lib
parent9b5c682e8ffb1d711f2848e990140383967380d2 (diff)
downloadpatchwork-5f20247c07c17d266321d49042c525deafe65152.tar.bz2
patchwork-5f20247c07c17d266321d49042c525deafe65152.tar.xz
Normalise order numbers in bundle-ordering migration SQL
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/sql/migration/005-bundle-patch-ordering.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sql/migration/005-bundle-patch-ordering.sql b/lib/sql/migration/005-bundle-patch-ordering.sql
index e0db398..1491aa8 100644
--- a/lib/sql/migration/005-bundle-patch-ordering.sql
+++ b/lib/sql/migration/005-bundle-patch-ordering.sql
@@ -8,4 +8,7 @@ ALTER TABLE patchwork_bundlepatch
ALTER TABLE patchwork_bundlepatch ALTER COLUMN "order" DROP DEFAULT;
DROP SEQUENCE bundlepatch_tmp_seq;
ALTER TABLE patchwork_bundlepatch ADD UNIQUE("bundle_id", "order");
+UPDATE patchwork_bundlepatch SET "order" = 1 + "order" -
+ (SELECT min("order") FROM patchwork_bundlepatch AS p2
+ WHERE p2.bundle_id = patchwork_bundlepatch.bundle_id);
COMMIT;