Skip to content

Commit 66acd10

Browse files
committed
Merge Audit Event db migrations
1 parent 2b0794a commit 66acd10

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

backend/src/main/resources/org/cryptomator/hub/flyway/V17__Create_Audit_Event_Setting_WoT.sql

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
CREATE TABLE "audit_event_setting_wot_update"
2+
(
3+
"id" BIGINT NOT NULL,
4+
"updated_by" VARCHAR(255) COLLATE "C" NOT NULL,
5+
"wot_max_depth" INTEGER NOT NULL,
6+
"wot_id_verify_len" INTEGER NOT NULL,
7+
CONSTRAINT "AUDIT_EVENT_SETTING_WOT_UPDATE_PK" PRIMARY KEY ("id"),
8+
CONSTRAINT "AUDIT_EVENT_SETTING_WOT_UPDATE_FK_AUDIT_EVENT" FOREIGN KEY ("id") REFERENCES "audit_event" ("id") ON DELETE CASCADE
9+
);
10+
111
CREATE TABLE "audit_event_user_keys_change"
212
(
313
"id" BIGINT NOT NULL,

0 commit comments

Comments
 (0)