Set minimum prefix length 3 on manticore actors table.

This commit is contained in:
DebaucheryLibrarian 2024-05-30 23:54:49 +02:00
parent 7f4e4df9e3
commit 7db724eda4
2 changed files with 2 additions and 2 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,

View File

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