Skip to content

Commit 9ef8dbd

Browse files
authored
Merge pull request #140 from authzed/graphfix
fix migration for postgres v1.14.0-v1.16.1
2 parents 2c72d56 + 8bf6211 commit 9ef8dbd

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

default-operator-config.yaml

+9-5
Original file line numberDiff line numberDiff line change
@@ -148,22 +148,23 @@ channels:
148148
- v1.16.1
149149
metadata:
150150
datastore: postgres
151+
default: "true"
151152
name: stable
152153
nodes:
153154
- id: v1.16.1
154-
migration: drop-id-constraints
155+
migration: drop-bigserial-ids
155156
tag: v1.16.1
156157
- id: v1.16.0
157-
migration: drop-id-constraints
158+
migration: drop-bigserial-ids
158159
tag: v1.16.0
159160
- id: v1.15.0
160-
migration: drop-id-constraints
161+
migration: drop-bigserial-ids
161162
tag: v1.15.0
162163
- id: v1.14.1
163-
migration: drop-id-constraints
164+
migration: drop-bigserial-ids
164165
tag: v1.14.1
165166
- id: v1.14.0
166-
migration: drop-id-constraints
167+
migration: drop-bigserial-ids
167168
tag: v1.14.0
168169
- id: v1.14.0-phase2
169170
migration: add-xid-constraints
@@ -408,6 +409,7 @@ channels:
408409
- v1.16.1
409410
metadata:
410411
datastore: cockroachdb
412+
default: "true"
411413
name: stable
412414
nodes:
413415
- id: v1.16.1
@@ -555,6 +557,7 @@ channels:
555557
- v1.16.1
556558
metadata:
557559
datastore: mysql
560+
default: "true"
558561
name: stable
559562
nodes:
560563
- id: v1.16.1
@@ -786,6 +789,7 @@ channels:
786789
- v1.16.1
787790
metadata:
788791
datastore: spanner
792+
default: "true"
789793
name: stable
790794
nodes:
791795
- id: v1.16.1

tools/generate-update-graph/main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ func main() {
6464

6565
func postgresChannel() updates.Channel {
6666
releases := []updates.State{
67-
{ID: "v1.16.1", Tag: "v1.16.1", Migration: "drop-id-constraints"},
68-
{ID: "v1.16.0", Tag: "v1.16.0", Migration: "drop-id-constraints"},
69-
{ID: "v1.15.0", Tag: "v1.15.0", Migration: "drop-id-constraints"},
70-
{ID: "v1.14.1", Tag: "v1.14.1", Migration: "drop-id-constraints"},
71-
{ID: "v1.14.0", Tag: "v1.14.0", Migration: "drop-id-constraints"},
67+
{ID: "v1.16.1", Tag: "v1.16.1", Migration: "drop-bigserial-ids"},
68+
{ID: "v1.16.0", Tag: "v1.16.0", Migration: "drop-bigserial-ids"},
69+
{ID: "v1.15.0", Tag: "v1.15.0", Migration: "drop-bigserial-ids"},
70+
{ID: "v1.14.1", Tag: "v1.14.1", Migration: "drop-bigserial-ids"},
71+
{ID: "v1.14.0", Tag: "v1.14.0", Migration: "drop-bigserial-ids"},
7272
{ID: "v1.14.0-phase2", Tag: "v1.14.0", Migration: "add-xid-constraints", Phase: "write-both-read-new"},
7373
{ID: "v1.14.0-phase1", Tag: "v1.14.0", Migration: "add-xid-columns", Phase: "write-both-read-old"},
7474
{ID: "v1.13.0", Tag: "v1.13.0", Migration: "add-ns-config-id"},

0 commit comments

Comments
 (0)