mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-14 11:47:38 +00:00
Merge branch 'master' into new-eventstore
# Conflicts: # go.mod # internal/admin/repository/eventsourcing/eventstore/iam.go # internal/authz/repository/eventsourcing/repository.go # internal/eventstore/eventstore.go # internal/setup/config.go # pkg/grpc/management/mock/management.proto.mock.go
This commit is contained in:
21
migrations/cockroach/V1.26__current_sequence_table.sql
Normal file
21
migrations/cockroach/V1.26__current_sequence_table.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
ALTER TABLE management.current_sequences ADD COLUMN aggregate_type STRING NOT NULL DEFAULT '';
|
||||
ALTER TABLE auth.current_sequences ADD COLUMN aggregate_type STRING NOT NULL DEFAULT '';
|
||||
ALTER TABLE authz.current_sequences ADD COLUMN aggregate_type STRING NOT NULL DEFAULT '';
|
||||
ALTER TABLE adminapi.current_sequences ADD COLUMN aggregate_type STRING NOT NULL DEFAULT '';
|
||||
ALTER TABLE notification.current_sequences ADD COLUMN aggregate_type STRING NOT NULL DEFAULT '';
|
||||
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE management.current_sequences DROP CONSTRAINT "primary";
|
||||
ALTER TABLE auth.current_sequences DROP CONSTRAINT "primary";
|
||||
ALTER TABLE authz.current_sequences DROP CONSTRAINT "primary";
|
||||
ALTER TABLE adminapi.current_sequences DROP CONSTRAINT "primary";
|
||||
ALTER TABLE notification.current_sequences DROP CONSTRAINT "primary";
|
||||
|
||||
ALTER TABLE management.current_sequences ADD CONSTRAINT "primary" PRIMARY KEY (view_name, aggregate_type);
|
||||
ALTER TABLE auth.current_sequences ADD CONSTRAINT "primary" PRIMARY KEY (view_name, aggregate_type);
|
||||
ALTER TABLE authz.current_sequences ADD CONSTRAINT "primary" PRIMARY KEY (view_name, aggregate_type);
|
||||
ALTER TABLE adminapi.current_sequences ADD CONSTRAINT "primary" PRIMARY KEY (view_name, aggregate_type);
|
||||
ALTER TABLE notification.current_sequences ADD CONSTRAINT "primary" PRIMARY KEY (view_name, aggregate_type);
|
||||
|
||||
COMMIT;
|
Reference in New Issue
Block a user