mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 08:06:56 +00:00
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
import type { Generated } from "kysely";
|
|
|
|
interface ThumbnailTable {
|
|
id: Generated<number>;
|
|
directory_id: number | null;
|
|
file_id: number | null;
|
|
category_id: number | null;
|
|
path: string;
|
|
updated_at: Date;
|
|
encrypted_content_iv: string; // Base64
|
|
}
|
|
|
|
declare module "./index" {
|
|
interface Database {
|
|
thumbnail: ThumbnailTable;
|
|
}
|
|
}
|