Added agency to actor profile tables.

This commit is contained in:
DebaucheryLibrarian
2024-10-23 02:58:37 +02:00
parent 5b12a553bf
commit 50af67e3c6
2 changed files with 9 additions and 1 deletions

2
common

Submodule common updated: 40011a62da...e55818ab44

View File

@@ -59,6 +59,8 @@ exports.up = async (knex) => {
table.boolean('natural_lips'); table.boolean('natural_lips');
table.integer('lips_volume'); table.integer('lips_volume');
table.string('agency');
}); });
await knex.schema.alterTable('actors_profiles', (table) => { await knex.schema.alterTable('actors_profiles', (table) => {
@@ -73,6 +75,8 @@ exports.up = async (knex) => {
table.boolean('natural_lips'); table.boolean('natural_lips');
table.integer('lips_volume'); table.integer('lips_volume');
table.string('agency');
}); });
}; };
@@ -93,6 +97,8 @@ exports.down = async (knex) => {
table.dropColumn('natural_lips'); table.dropColumn('natural_lips');
table.dropColumn('lips_volume'); table.dropColumn('lips_volume');
table.dropColumn('agency');
}); });
await knex.schema.alterTable('actors_profiles', (table) => { await knex.schema.alterTable('actors_profiles', (table) => {
@@ -107,5 +113,7 @@ exports.down = async (knex) => {
table.dropColumn('natural_lips'); table.dropColumn('natural_lips');
table.dropColumn('lips_volume'); table.dropColumn('lips_volume');
table.dropColumn('agency');
}); });
}; };