mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-12 02:43:39 +00:00
9 lines
380 B
MySQL
9 lines
380 B
MySQL
|
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;
|