@nina-protocol/nina-db 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -90,7 +90,6 @@ export default class Release extends Model {
90
90
  }
91
91
  };
92
92
  format = async () => {
93
- console.log('formatting release: ', this.publicKey);
94
93
  const publisher = await this.$relatedQuery('publisher').select('publicKey');
95
94
  const publishedThroughHub = await this.$relatedQuery('publishedThroughHub');
96
95
  if (publishedThroughHub) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nina-protocol/nina-db",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "",
5
5
  "source": "src/index.js",
6
6
  "main": "dist/index.js",
@@ -101,7 +101,6 @@ export default class Release extends Model {
101
101
  }
102
102
 
103
103
  format = async () => {
104
- console.log('formatting release: ', this.publicKey)
105
104
  const publisher = await this.$relatedQuery('publisher').select('publicKey');
106
105
  const publishedThroughHub = await this.$relatedQuery('publishedThroughHub');
107
106
  if (publishedThroughHub) {
@@ -1,33 +0,0 @@
1
- // Update with your config settings.
2
- /**
3
- * @type { Object.<string, import("knex").Knex.Config> }
4
- */
5
- export default {
6
- development: {
7
- client: 'postgresql',
8
- connection: {
9
- host: process.env.POSTGRES_HOST,
10
- database: process.env.POSTGRES_DATABASE,
11
- user: process.env.POSTGRES_USER,
12
- password: process.env.POSTGRES_PASSWORD,
13
- },
14
- },
15
- staging: {
16
- client: 'postgresql',
17
- connection: {
18
- host: process.env.POSTGRES_HOST,
19
- database: process.env.POSTGRES_DATABASE,
20
- user: process.env.POSTGRES_USER,
21
- password: process.env.POSTGRES_PASSWORD,
22
- },
23
- },
24
- production: {
25
- client: 'postgresql',
26
- connection: {
27
- host: process.env.POSTGRES_HOST,
28
- database: process.env.POSTGRES_DATABASE,
29
- user: process.env.POSTGRES_USER,
30
- password: process.env.POSTGRES_PASSWORD,
31
- },
32
- }
33
- };