Skip to content

Commit 0a67058

Browse files
Merge pull request #665 from aXenDeveloper/more_info_log
feat: Add more info dialog for logger in debug panel
2 parents 70c464f + 1091d95 commit 0a67058

File tree

29 files changed

+1944
-70
lines changed

29 files changed

+1944
-70
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ALTER TABLE "core_logs" ADD COLUMN "method" varchar(10) DEFAULT 'GET' NOT NULL;--> statement-breakpoint
2+
ALTER TABLE "core_logs" ADD COLUMN "path" text DEFAULT 'localhost' NOT NULL;--> statement-breakpoint
3+
ALTER TABLE "core_logs" ADD COLUMN "userAgent" text;--> statement-breakpoint
4+
ALTER TABLE "core_logs" ADD COLUMN "statusCode" integer DEFAULT 500 NOT NULL;--> statement-breakpoint
5+
ALTER TABLE "core_logs" ADD COLUMN "userId" bigint;--> statement-breakpoint
6+
ALTER TABLE "core_logs" ADD CONSTRAINT "core_logs_userId_core_users_id_fk" FOREIGN KEY ("userId") REFERENCES "public"."core_users"("id") ON DELETE set null ON UPDATE cascade;

0 commit comments

Comments
 (0)