aboutsummaryrefslogtreecommitdiff
path: root/bot/src/utils/sequelize.js
blob: c5c036e339a03cc973238f315a139522f6e764ea (plain) (blame)
1
2
3
4
5
6
7
8
import { Sequelize } from 'sequelize';

export const sequelize = new Sequelize('database', 'user', 'password', {
    host: 'localhost',
    dialect: 'sqlite',
    logging: false,
    storage: 'database.db',
});