feat: add fps_one_percent_low column to performance entries

This commit is contained in:
2026-04-28 22:39:23 +08:00
parent ab27ba948f
commit 943fcff12b
4 changed files with 1654 additions and 0 deletions
+6
View File
@@ -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;