Added filterable stash pages.

This commit is contained in:
2024-03-15 00:08:24 +01:00
parent 7f00e31fc4
commit a1b45cb721
39 changed files with 649218 additions and 80 deletions

View File

@@ -19,4 +19,17 @@ export const knexOwner = knex({
// debug: process.env.NODE_ENV === 'development',
});
export const knexManticore = knex({
client: 'mysql',
connection: {
host: config.database.manticore.host,
port: config.database.manticore.sqlPort,
database: 'Manticore',
},
asyncStackTraces: process.env.NODE_ENV === 'development',
wrapIdentifier(value, _original, _queryContext) {
return value;
},
});
export default knexQuery;