redid database structures and now running SQLite and Seqelize

This commit is contained in:
plane000
2018-08-27 17:53:45 +01:00
parent c11aab31a0
commit 1ac8ea9b96
12 changed files with 899 additions and 251 deletions

View File

@@ -0,0 +1,11 @@
import Sequelize from 'sequelize';
import {BaseDatabase} from './baseDatabase';
import {Logger} from '../logger';
import {Config} from '../../config/config';
export class UserTools extends BaseDatabase {
static async testing() {
Logger.debug('Hello, world!');
}
}