37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
/* eslint-disable max-len */
|
|
exports.seed = knex => Promise.resolve()
|
|
.then(() => knex('networks').del())
|
|
.then(() => knex('networks').insert([
|
|
{
|
|
id: 'julesjordan',
|
|
name: 'Jules Jordan',
|
|
url: 'https://www.julesjordan.com',
|
|
},
|
|
{
|
|
id: 'kink',
|
|
name: 'Kink',
|
|
url: 'https://www.kink.com',
|
|
description: 'Authentic Bondage & Real BDSM Porn Videos. Demystifying and celebrating alternative sexuality by providing the most authentic kinky videos. Experience the other side of porn.',
|
|
},
|
|
{
|
|
id: 'legalporno',
|
|
name: 'LegalPorno',
|
|
url: 'https://www.legalporno.com',
|
|
description: 'The Best HD Porn For You!',
|
|
},
|
|
{
|
|
id: 'pervcity',
|
|
name: 'Perv City',
|
|
url: 'https://www.pervcity.com',
|
|
description: '',
|
|
},
|
|
{
|
|
id: 'xempire',
|
|
name: 'XEmpire',
|
|
url: 'https://www.xempire.com',
|
|
description: 'XEmpire.com brings you today\'s top pornstars in beautifully shot, HD sex scenes across 4 unique porn sites of gonzo porn, interracial, lesbian & erotica!',
|
|
},
|
|
]));
|