redid database structures and now running SQLite and Seqelize
This commit is contained in:
11
src/models/database/users.js
Normal file
11
src/models/database/users.js
Normal 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!');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user