Files
deckyvault/apps/web/drizzle/0010_soft_wilson_fisk.sql
adrianbonpin cd72b7a948 refactor: convert to bun workspaces monorepo
- Move web app into apps/web/
- Create packages/shared/ with shared types
- Create plugins/decky-vault/ scaffold
- Root package.json manages workspaces only
2026-06-28 05:20:28 +08:00

6 lines
543 B
SQL

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;