Provide version of postgresql

This commit is contained in:
syuilo
2019-06-18 15:56:03 +09:00
parent 1331f0b953
commit bb52ebdc3e
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import { fetchMeta } from '../../../misc/fetch-meta';
import * as pkg from '../../../../package.json';
import { Emojis } from '../../../models';
import { types, bool } from '../../../misc/schema';
import { getConnection } from 'typeorm';
export const meta = {
stability: 'stable',
@ -114,6 +115,7 @@ export default define(meta, async (ps, me) => {
machine: os.hostname(),
os: os.platform(),
node: process.version,
psql: await getConnection().query('SHOW server_version').then(x => x[0].server_version),
cpu: {
model: os.cpus()[0].model,