fix(projection): add idp login policy link (#2590)

* 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(projection): add idp login policy link

* fix: migration versions

* fix: migration versions

* refactor: rename externalIDP to UserIDPLink

* fix: interface

* fix: interface methods
This commit is contained in:
Silvan
2021-11-02 11:00:48 +01:00
committed by GitHub
parent 92f9eedbe0
commit 80b811c12e
4 changed files with 396 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CREATE TABLE zitadel.projections.idp_login_policy_links(
idp_id STRING,
aggregate_id STRING,
provider_type INT2,
creation_date TIMESTAMPTZ,
change_date TIMESTAMPTZ,
sequence INT8,
resource_owner STRING,
PRIMARY KEY (aggregate_id, idp_id)
);