Rename existing cache model

This commit is contained in:
Max Isom 2021-11-18 20:50:44 -05:00
parent 381ee62b78
commit d805da906a
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
4 changed files with 8 additions and 8 deletions

View file

@ -1,12 +1,12 @@
import {Sequelize} from 'sequelize-typescript';
import path from 'path';
import {DATA_DIR} from '../services/config.js';
import {Cache, Settings, Shortcut} from '../models/index.js';
import {KeyValueCache, Settings, Shortcut} from '../models/index.js';
export const sequelize = new Sequelize({
dialect: 'sqlite',
database: 'muse',
storage: path.join(DATA_DIR, 'db.sqlite'),
models: [Cache, Settings, Shortcut],
models: [KeyValueCache, Settings, Shortcut],
logging: false,
});