Files
planka/server/db/knexfile.js
2023-02-27 21:16:51 +05:00

26 lines
548 B
JavaScript
Executable File

const path = require('path');
const dotenv = require('dotenv');
const _ = require('lodash');
dotenv.config({
path: path.resolve(__dirname, '../.env'),
});
module.exports = {
client: 'pg',
connection: {
connectionString: process.env.DATABASE_URL,
ssl: {
rejectUnauthorized: false,
},
},
migrations: {
tableName: 'migration',
directory: path.join(__dirname, 'migrations'),
},
seeds: {
directory: path.join(__dirname, 'seeds'),
},
wrapIdentifier: (value, origImpl) => origImpl(_.snakeCase(value)),
};