Compare commits
2 Commits
ec33a8b5a9
...
8f81f71802
Author | SHA1 | Date |
---|---|---|
|
8f81f71802 | |
|
e7a4ccecf3 |
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.231.28",
|
||||
"version": "1.231.29",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.231.28",
|
||||
"version": "1.231.29",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@casl/ability": "^5.2.2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.231.28",
|
||||
"version": "1.231.29",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -74,8 +74,9 @@ const studios = [
|
|||
showcased: true,
|
||||
},
|
||||
{
|
||||
name: 'Natasha Teen Productions',
|
||||
slug: 'natashateenproductions',
|
||||
name: 'Natasha Teen Films',
|
||||
slug: 'natashateenfilms',
|
||||
rename: 'natashateenproductions',
|
||||
url: 'https://www.analvids.com/studios/natasha-teen-productions',
|
||||
parent: 'analvids',
|
||||
alias: [
|
||||
|
@ -5238,6 +5239,19 @@ const studios = [
|
|||
/* eslint-disable max-len */
|
||||
exports.seed = (knex) => Promise.resolve()
|
||||
.then(async () => {
|
||||
await Promise.all(studios.map(async (studio) => {
|
||||
if (studio.rename) {
|
||||
return knex('entities')
|
||||
.where({
|
||||
type: studio.type || 'studio',
|
||||
slug: studio.rename,
|
||||
})
|
||||
.update('slug', studio.slug);
|
||||
}
|
||||
|
||||
return null;
|
||||
}).filter(Boolean));
|
||||
|
||||
const networks = await knex('entities')
|
||||
.whereIn('type', ['network', 'channel'])
|
||||
.whereIn('slug', studios.map((studio) => studio.parent));
|
||||
|
|
Loading…
Reference in New Issue