mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 10:22:56 +00:00
fix(projections): user idp link projection (#2583)
* fix(projections): add app * fix(migration): add index for project_id * test: app projection * fix(projections): add idp_user_link * test: idp user link * fix: migration versions * refactor: rename externalIDP to UserIDPLink * fix: interface methods
This commit is contained in:
14
migrations/cockroach/V1.88__user_idp_link.sql
Normal file
14
migrations/cockroach/V1.88__user_idp_link.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE zitadel.projections.idp_user_links(
|
||||
idp_id STRING,
|
||||
user_id STRING,
|
||||
external_user_id STRING,
|
||||
display_name STRING,
|
||||
|
||||
creation_date TIMESTAMPTZ,
|
||||
change_date TIMESTAMPTZ,
|
||||
sequence INT8,
|
||||
resource_owner STRING,
|
||||
|
||||
PRIMARY KEY (idp_id, external_user_id),
|
||||
INDEX idx_user (user_id)
|
||||
);
|
Reference in New Issue
Block a user