Files
OnePieceDle/drizzle/0004_unique_lorna_dane.sql
whidix c40ec7e91a
All checks were successful
Build Docker Image / build (push) Successful in 1m22s
feat: add userCharacterHistory table schema and update journal with new version
2026-03-02 20:42:44 +01:00

10 lines
359 B
SQL

CREATE TABLE `userCharacterHistory` (
`id` text PRIMARY KEY NOT NULL,
`userId` text,
`characterId` text,
`tryCount` integer NOT NULL,
`createdAt` integer NOT NULL,
FOREIGN KEY (`userId`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE no action,
FOREIGN KEY (`characterId`) REFERENCES `character`(`id`) ON UPDATE no action ON DELETE no action
);