feat: add fps_one_percent_low column to performance entries
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
ALTER TABLE "hardware" ALTER COLUMN "device_type" SET DATA TYPE text;--> statement-breakpoint
|
||||
DROP TYPE "public"."device_type";--> statement-breakpoint
|
||||
CREATE TYPE "public"."device_type" AS ENUM('handheld', 'console');--> statement-breakpoint
|
||||
ALTER TABLE "hardware" ALTER COLUMN "device_type" SET DATA TYPE "public"."device_type" USING "device_type"::"public"."device_type";--> statement-breakpoint
|
||||
ALTER TABLE "hardware" ADD COLUMN "image" text;--> statement-breakpoint
|
||||
ALTER TABLE "performance_entries" ADD COLUMN "fps_one_percent_low" real;
|
||||
File diff suppressed because it is too large
Load Diff
@@ -71,6 +71,13 @@
|
||||
"when": 1777273845181,
|
||||
"tag": "0009_flawless_meltdown",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 10,
|
||||
"version": "7",
|
||||
"when": 1777386687207,
|
||||
"tag": "0010_soft_wilson_fisk",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -54,6 +54,7 @@ export const performanceEntries = pgTable(
|
||||
// Performance metrics
|
||||
fpsAvg: real("fps_avg").notNull(),
|
||||
fpsLow: real("fps_low"),
|
||||
fpsOnePercentLow: real("fps_one_percent_low"),
|
||||
fpsHigh: real("fps_high"),
|
||||
|
||||
// Environment
|
||||
|
||||
Reference in New Issue
Block a user