mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
20 lines
339 B
JavaScript
20 lines
339 B
JavaScript
|
module.exports = {
|
||
|
development: {
|
||
|
client: 'mysql',
|
||
|
migrations: {
|
||
|
tableName: 'migrations',
|
||
|
stub: 'lib/migrate_template.js',
|
||
|
directory: 'migrations'
|
||
|
}
|
||
|
},
|
||
|
|
||
|
production: {
|
||
|
client: 'mysql',
|
||
|
migrations: {
|
||
|
tableName: 'migrations',
|
||
|
stub: 'lib/migrate_template.js',
|
||
|
directory: 'migrations'
|
||
|
}
|
||
|
}
|
||
|
};
|