WIP: Add UserSetting entity
All checks were successful
Test / build (push) Successful in 6s

This commit is contained in:
Ethan Lane 2024-09-25 19:03:16 +01:00
parent 06eb7dbbb1
commit 789d5d6410
3 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,11 @@
CREATE TABLE `user_setting` (
`Id` varchar(255) NOT NULL,
`WhenCreated` datetime NOT NULL,
`WhenUpdated` datetime NOT NULL,
`UserId` varchar(255) NOT NULL,
`Key` varchar(255) NOT NULL,
`Value` varchar(255) NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
ALTER TABLE `user_setting`
ADD PRIMARY KEY (`Id`);