Adding in the Archives and Posts DB and functions to get ready for IDAA changes.
This commit is contained in:
@@ -127,12 +127,12 @@ export interface Note {
|
||||
// Updated 2024-06-10
|
||||
export class MySubClassedDexie extends Dexie {
|
||||
// We just tell the typing system this is the case
|
||||
notes!: Table<Note>;
|
||||
note!: Table<Note>;
|
||||
|
||||
constructor() {
|
||||
super('ae_notes_db');
|
||||
this.version(1).stores({
|
||||
notes: `
|
||||
note: `
|
||||
id, note_id, note_id_random,
|
||||
code,
|
||||
account_id, account_id_random,
|
||||
@@ -146,4 +146,4 @@ export class MySubClassedDexie extends Dexie {
|
||||
}
|
||||
}
|
||||
|
||||
export const db_notes = new MySubClassedDexie();
|
||||
export const db_notes = new MySubClassedDexie();
|
||||
|
||||
Reference in New Issue
Block a user