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,9 +1,9 @@
import Cache from './cache.js';
import KeyValueCache from './key-value-cache.js';
import Settings from './settings.js';
import Shortcut from './shortcut.js';
export {
Cache,
KeyValueCache,
Settings,
Shortcut,
};

View file

@ -2,7 +2,7 @@ import {Table, Column, PrimaryKey, Model} from 'sequelize-typescript';
import sequelize from 'sequelize';
@Table
export default class Cache extends Model<Cache> {
export default class KeyValueCache extends Model<KeyValueCache> {
@PrimaryKey
@Column
key!: string;