Added actor date of birth and death precision table.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
exports.up = async function(knex) {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.string('date_of_birth_precision')
|
||||
.notNullable()
|
||||
.defaultTo('day');
|
||||
|
||||
table.string('date_of_death_precision')
|
||||
.notNullable()
|
||||
.defaultTo('day');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.string('date_of_birth_precision')
|
||||
.notNullable()
|
||||
.defaultTo('day');
|
||||
|
||||
table.string('date_of_death_precision')
|
||||
.notNullable()
|
||||
.defaultTo('day');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async function(knex) {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.dropColumn('date_of_birth_precision');
|
||||
table.dropColumn('date_of_death_precision');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.dropColumn('date_of_birth_precision');
|
||||
table.dropColumn('date_of_death_precision');
|
||||
});
|
||||
};
|
||||
@@ -348,6 +348,16 @@ const tags = [
|
||||
slug: 'brunette',
|
||||
group: 'hair',
|
||||
},
|
||||
{
|
||||
name: 'boots',
|
||||
slug: 'boots',
|
||||
group: 'clothing',
|
||||
},
|
||||
{
|
||||
name: 'pleasers',
|
||||
slug: 'pleasers',
|
||||
group: 'clothing',
|
||||
},
|
||||
{
|
||||
name: 'bukkake',
|
||||
slug: 'bukkake',
|
||||
@@ -410,6 +420,10 @@ const tags = [
|
||||
name: 'cum',
|
||||
slug: 'cum',
|
||||
},
|
||||
{
|
||||
name: 'cum covered fucking',
|
||||
slug: 'ccf',
|
||||
},
|
||||
{
|
||||
name: 'cum drunk',
|
||||
slug: 'cum-drunk',
|
||||
@@ -3183,6 +3197,22 @@ const aliases = [
|
||||
name: 'fist',
|
||||
for: 'fisting',
|
||||
},
|
||||
{
|
||||
name: 'boot',
|
||||
for: 'boots',
|
||||
},
|
||||
{
|
||||
name: 'pleaser boots',
|
||||
for: 'pleasers',
|
||||
},
|
||||
{
|
||||
name: 'pleaser shoes',
|
||||
for: 'pleasers',
|
||||
},
|
||||
{
|
||||
name: 'pleaser heels',
|
||||
for: 'pleasers',
|
||||
},
|
||||
];
|
||||
|
||||
const priorities = [ // higher index is higher priority
|
||||
|
||||
+1
-1
@@ -6127,7 +6127,7 @@ const sites = [
|
||||
{
|
||||
slug: 'blackforwife',
|
||||
name: 'Black for Wife',
|
||||
url: 'https://www.blackforwife.com',
|
||||
url: 'https://www.blackforwife.org',
|
||||
parent: 'jayrock',
|
||||
parameters: {
|
||||
useGamma: true,
|
||||
|
||||
Reference in New Issue
Block a user