mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 23:33:40 +00:00
5e00f1c9db
* feat: check if org exists * feat: check if org exists * Update internal/authz/repository/eventsourcing/eventstore/token_verifier.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: err handling Co-authored-by: Silvan <silvan.reusser@gmail.com>
17 lines
243 B
PL/PgSQL
17 lines
243 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE authz.orgs (
|
|
id TEXT,
|
|
creation_date TIMESTAMPTZ,
|
|
change_date TIMESTAMPTZ,
|
|
resource_owner TEXT,
|
|
org_state SMALLINT,
|
|
sequence BIGINT,
|
|
|
|
domain TEXT,
|
|
name TEXT,
|
|
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
COMMIT; |