Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
febaac3865 1.250.6 2026-03-01 04:27:32 +01:00
DebaucheryLibrarian
f82167656b Changed actor foot column to decimal. 2026-03-01 04:27:29 +01:00
4 changed files with 28 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
exports.up = async function(knex) {
await knex.schema.alterTable('actors', (table) => {
table.decimal('foot')
.alter();
});
await knex.schema.alterTable('actors_profiles', (table) => {
table.decimal('foot')
.alter();
});
};
exports.down = async function(knex) {
await knex.schema.alterTable('actors', (table) => {
table.integer('foot')
.alter();
});
await knex.schema.alterTable('actors_profiles', (table) => {
table.integer('foot')
.alter();
});
};

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.250.5",
"version": "1.250.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.250.5",
"version": "1.250.6",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.250.5",
"version": "1.250.6",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@@ -891,6 +891,8 @@ async function scrapeActors(argNames) {
console.log(util.inspect(profiles, { depth: Infinity, colors: true }));
}
console.log('PROFILES', profiles);
if (argv.save) {
await storeProfiles(profiles);
}