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

@ -1 +1 @@
Subproject commit 40011a62dae9da8deda71e9f8daf39665a8b7958
Subproject commit e55818ab448d463c4765c3394a6049280799ec33

View File

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