Cleaned up old Dexie class. Added mnemonic and dateCreated columns.

This commit is contained in:
Matthew Aaron Raymer
2022-12-16 13:34:01 +08:00
parent c9d5ab82fd
commit 607230b51c
8 changed files with 7 additions and 119 deletions

View File

@@ -1,27 +0,0 @@
/**
* Field names used by the tables for the DB objects.
*/
export enum Field {
// Setting
KEY = "key",
VALUE = "value",
// Log
SEVERITY = "severity",
LABEL = "label",
ERROR = "error",
// Accounts
NAME = "name",
DESCRIPTION = "description",
ID = "id",
IDENTITY = "indentity",
CREATED_TIMESTAMP = "createdTimestamp",
STATUS = "status",
}
export enum Severity {
DEBUG = "Debug",
INFO = "Info",
WARN = "Warning",
ERROR = "Error",
CRITICAL = "Critical",
}

View File

@@ -1,6 +0,0 @@
/**
* Dexie table names used by the DexieWrapper service.
*/
export enum AppTable {
ACCOUNTS = "Accounts-Table",
}