elder-orm/core

View on GitHub
knexfile.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const development = {
  client: 'postgresql',
  connection: {
    database: process.env.DB_NAME,
    user: process.env.DB_USER
  },
  migrations: {
    tableName: 'migrations'
  }
}