Updated Jules Jordan scraper.
This commit is contained in:
11
src/tools/knex-error.js
Normal file
11
src/tools/knex-error.js
Normal 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();
|
||||
Reference in New Issue
Block a user