-
Notifications
You must be signed in to change notification settings - Fork 0
/
knexfile.js
executable file
·40 lines (35 loc) · 1.13 KB
/
knexfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
development: {
client: 'postgresql',
connection: 'postgres://fjncbkvtfeudms:9cf011343f162ec0a08d589d26432061144a6ccf9fb86b906d274b7bf11c608d@ec2-54-83-37-223.compute-1.amazonaws.com:5432/d9i5vj00kei9ml?ssl=true',
pool: {
min: 2,
max: 10
},
migrations: {
tableName: 'knex_migrations'
}
},
staging: {
client: 'postgresql',
connection: 'postgres://fjncbkvtfeudms:9cf011343f162ec0a08d589d26432061144a6ccf9fb86b906d274b7bf11c608d@ec2-54-83-37-223.compute-1.amazonaws.com:5432/d9i5vj00kei9ml?ssl=true',
pool: {
min: 2,
max: 10
},
migrations: {
tableName: 'knex_migrations'
}
},
production: {
client: 'postgresql',
connection: 'postgres://fjncbkvtfeudms:9cf011343f162ec0a08d589d26432061144a6ccf9fb86b906d274b7bf11c608d@ec2-54-83-37-223.compute-1.amazonaws.com:5432/d9i5vj00kei9ml?ssl=true',
pool: {
min: 2,
max: 10
},
migrations: {
tableName: 'knex_migrations'
}
}
};