forked from jsnbuchanan/crowd-funder-for-time-pwa
In transition ... experimenting
This commit is contained in:
15
src/db/tables/accounts.ts
Normal file
15
src/db/tables/accounts.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Table } from "dexie";
|
||||
|
||||
export type Account = {
|
||||
id?: number;
|
||||
publicKey: string;
|
||||
identity: string;
|
||||
};
|
||||
|
||||
export type AccountsTable = {
|
||||
accounts: Table<Account>;
|
||||
};
|
||||
|
||||
export const accountsSchema = {
|
||||
accounts: "++id, publicKey, $identity",
|
||||
};
|
||||
Reference in New Issue
Block a user