summary refs log tree commit diff
path: root/src/util/entities/EmbedCache.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/entities/EmbedCache.ts')
-rw-r--r--src/util/entities/EmbedCache.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/entities/EmbedCache.ts b/src/util/entities/EmbedCache.ts

index db1fbba6..a9ffd063 100644 --- a/src/util/entities/EmbedCache.ts +++ b/src/util/entities/EmbedCache.ts
@@ -29,4 +29,11 @@ export class EmbedCache extends BaseClass { @Column({ type: "simple-json" }) embed: Embed; + + // TODO: store all returned embed objects from a handler + // @Column({ type: "simple-json" }) + // embeds: Embed[]; + + @Column({ name: "created_at", type: "timestamp with time zone" }) + createdAt: Date; }