Updated Hussie Pass scraper for new site design. Added cock size to profiles.

This commit is contained in:
DebaucheryLibrarian
2020-11-15 04:33:24 +01:00
parent b3a5d7f379
commit df9a6eac05
69 changed files with 267 additions and 145 deletions

View File

@@ -278,6 +278,7 @@ exports.up = knex => Promise.resolve()
table.integer('penis_length', 3);
table.integer('penis_girth', 3);
table.boolean('circumcised');
table.integer('height', 3);
table.integer('weight', 3);
@@ -355,6 +356,7 @@ exports.up = knex => Promise.resolve()
table.integer('penis_length', 3);
table.integer('penis_girth', 3);
table.boolean('circumcised');
table.integer('height', 3);
table.integer('weight', 3);
@@ -1144,6 +1146,8 @@ exports.up = knex => Promise.resolve()
return knex.raw(`
COMMENT ON COLUMN actors.height IS E'@omit read,update,create,delete,all,many';
COMMENT ON COLUMN actors.weight IS E'@omit read,update,create,delete,all,many';
COMMENT ON COLUMN actors.penis_length IS E'@omit read,update,create,delete,all,many';
COMMENT ON COLUMN actors.penis_girth IS E'@omit read,update,create,delete,all,many';
COMMENT ON FUNCTION actors_tags IS E'@sortable';
COMMENT ON FUNCTION actors_channels IS E'@sortable';