mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
65a6fb638b
* begin authn keys * single table for state change * add key type * rename migration * format imports * fix test
17 lines
443 B
SQL
17 lines
443 B
SQL
CREATE TABLE zitadel.projections.authn_keys(
|
|
id STRING
|
|
, creation_date TIMESTAMPTZ NOT NULL
|
|
, resource_owner STRING NOT NULL
|
|
, aggregate_id STRING NOT NULL
|
|
, sequence INT8 NOT NULL
|
|
|
|
, object_id STRING NOT NULL
|
|
, expiration TIMESTAMPTZ NOT NULL
|
|
, identifier STRING NOT NULL
|
|
, public_key BYTES NOT NULL
|
|
, enabled BOOLEAN NOT NULL DEFAULT true
|
|
, type INT2 NOT NULL DEFAULT 0
|
|
|
|
, PRIMARY KEY (id)
|
|
);
|