Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian fb88e41087 1.237.14 2024-05-30 23:54:52 +02:00
DebaucheryLibrarian 7db724eda4 Set minimum prefix length 3 on manticore actors table. 2024-05-30 23:54:49 +02:00
4 changed files with 5 additions and 5 deletions

View File

@ -94,7 +94,7 @@ exports.up = async (knex) => {
created_at timestamp
)`);
await utilsApi.sql(`create table actors (${actorsFields})`);
await utilsApi.sql(`create table actors (${actorsFields}) min_prefix_len='3'`);
await utilsApi.sql(`create table actors_stashed (
actor_id int,

4
package-lock.json generated
View File

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

View File

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

View File

@ -50,7 +50,7 @@ async function init() {
penis_girth int,
stashed int,
scenes int
)`);
) min_prefix_len = '3'`);
const actors = await fetchActors();