More work to prepare the new Archives, Posts, and Recovery Meetings

This commit is contained in:
Scott Idem
2024-09-25 18:44:49 -04:00
parent 283850e917
commit 32ca117b11
15 changed files with 1272 additions and 164 deletions

View File

@@ -89,7 +89,7 @@ export interface Post_Comment {
export class MySubClassedDexie extends Dexie {
// We just tell the typing system this is the case
post!: Table<Post>;
post_comment!: Table<Post_Comment>;
comment!: Table<Post_Comment>;
constructor() {
super('ae_posts_db');
@@ -102,7 +102,8 @@ export class MySubClassedDexie extends Dexie {
full_name, email,
archive, archive_on,
enable, hide, priority, sort, group, notes, created_on, updated_on`,
post_comment: `
comment: `
id, post_comment_id,
post_id,
title,