weddingsite/utils/db.js

11 lines
272 B
JavaScript
Raw Permalink Normal View History

import knex from 'knex';
import configs from '../knexfile';
2021-06-04 00:58:40 +00:00
async function connectDb() {
// check if we have a connection to the database or if it's currently
// connecting or disconnecting (readyState 1, 2 and 3)
return knex(configs);
2021-06-04 00:58:40 +00:00
}
export default connectDb;