feat: add categories and favorites schemas with integrations

Added `categories` and `favorites` database schemas with full type inference support. Integrated categories into `content` schema with new properties (`categoryId`, `slug`, `views`, and `usageCount`). Updated `tags` schema to include `userId` with reference to `users`. Exported new schemas in index for broader usage.
This commit is contained in:
Mathis HERRIOT
2026-01-08 15:25:51 +01:00
parent fe309bc1e3
commit 912394477b
5 changed files with 61 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
export * from "./api_keys";
export * from "./audit_logs";
export * from "./categories";
export * from "./content";
export * from "./favorites";
export * from "./rbac";
export * from "./reports";
export * from "./sessions";