From d67b086a00a64b5f7bc322e4c29c163d5bfb01ea Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 27 Apr 2017 15:17:41 +0000 Subject: [PATCH] That should be DATABASE_URL --- package.json | 2 +- structures/PostgreSQL.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8969351b..1e27c014 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "16.2.1", + "version": "16.2.2", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": { diff --git a/structures/PostgreSQL.js b/structures/PostgreSQL.js index c82f5b9b..82510bec 100644 --- a/structures/PostgreSQL.js +++ b/structures/PostgreSQL.js @@ -1,6 +1,6 @@ const Sequelize = require('sequelize'); -const database = new Sequelize(process.env.DB_URL, { logging: false }); +const database = new Sequelize(process.env.DATABASE_URL, { logging: false }); class Database { static get db() {