mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 08:06:56 +00:00
DB에 thumbnail 테이블 추가
This commit is contained in:
17
src/lib/server/db/schema/media.ts
Normal file
17
src/lib/server/db/schema/media.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { ColumnType, Generated } from "kysely";
|
||||
|
||||
interface ThumbnailTable {
|
||||
id: Generated<number>;
|
||||
directory_id: number | null;
|
||||
file_id: number | null;
|
||||
category_id: number | null;
|
||||
path: string;
|
||||
created_at: ColumnType<Date, Date, never>;
|
||||
encrypted_content_iv: string; // Base64
|
||||
}
|
||||
|
||||
declare module "./index" {
|
||||
interface Database {
|
||||
thumbnail: ThumbnailTable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user