diff --git a/src/db/schemas/history.ts b/src/db/schemas/history.ts index 1c02f28..9186ab6 100644 --- a/src/db/schemas/history.ts +++ b/src/db/schemas/history.ts @@ -12,8 +12,10 @@ const historiesTable = { histories: '++id, date', }; -export default { +const history = { name: 'histories', schema: HistorySchema, table: historiesTable, }; + +export default history;