Cleaned up old Dexie class. Added mnemonic and dateCreated columns.
This commit is contained in:
@@ -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",
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
/**
|
||||
* Dexie table names used by the DexieWrapper service.
|
||||
*/
|
||||
export enum AppTable {
|
||||
ACCOUNTS = "Accounts-Table",
|
||||
}
|
||||
Reference in New Issue
Block a user