Updated Jules Jordan scraper.

This commit is contained in:
DebaucheryLibrarian
2023-07-06 00:14:38 +02:00
parent 66439b3b17
commit 0905847ffa
609 changed files with 391 additions and 277 deletions

11
src/tools/knex-error.js Normal file
View File

@@ -0,0 +1,11 @@
const knex = require('../knex');
async function init() {
try {
await knex.raw('INSERT INTO actors_profiles (actor_id) VALUES (1000000000) ON CONFLICT DO NOTHING RETURNING *;');
} catch (error) {
console.log(error);
}
}
init();