mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-12 10:53:39 +00:00
423b86a03b
* feat: reread events * feat: sequence and timestamo on search requests * feat: sequence and timestamo on search requests * fix: better naming * fix: log errors * fix: read sequence before search request
9 lines
380 B
PL/PgSQL
9 lines
380 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE authz.current_sequences ADD COLUMN timestamp TIMESTAMPTZ;
|
|
ALTER TABLE auth.current_sequences ADD COLUMN timestamp TIMESTAMPTZ;
|
|
ALTER TABLE management.current_sequences ADD COLUMN timestamp TIMESTAMPTZ;
|
|
ALTER TABLE notification.current_sequences ADD COLUMN timestamp TIMESTAMPTZ;
|
|
ALTER TABLE adminapi.current_sequences ADD COLUMN timestamp TIMESTAMPTZ;
|
|
|
|
COMMIT; |