mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
5a8cafcae5
* fix: correct env var for tracing type * fix: local env tracing * fix: key in detail as string * fix: implement storage * fix: machine key by id fix: store public key as bytes instead of crypto value * update oidc pkg * dont check origins for service account tokens * fix: scopes * fix: dependencies * fix: dependencies * fix: remove unused code * fix: variable naming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
14 lines
298 B
SQL
14 lines
298 B
SQL
CREATE TABLE auth.machine_keys (
|
|
id TEXT,
|
|
user_id TEXT,
|
|
|
|
machine_type SMALLINT,
|
|
expiration_date TIMESTAMPTZ,
|
|
sequence BIGINT,
|
|
creation_date TIMESTAMPTZ,
|
|
public_key JSONB,
|
|
|
|
PRIMARY KEY (id, user_id)
|
|
);
|
|
|
|
ALTER TABLE management.machine_keys ADD COLUMN public_key JSONB; |