From 50af67e3c6fba03ba47a70c154b753d79ad30e72 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Wed, 23 Oct 2024 02:58:37 +0200 Subject: [PATCH] Added agency to actor profile tables. --- common | 2 +- migrations/20241019013040_actor_revisions.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/common b/common index 40011a62..e55818ab 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 40011a62dae9da8deda71e9f8daf39665a8b7958 +Subproject commit e55818ab448d463c4765c3394a6049280799ec33 diff --git a/migrations/20241019013040_actor_revisions.js b/migrations/20241019013040_actor_revisions.js index 70077165..6b969262 100644 --- a/migrations/20241019013040_actor_revisions.js +++ b/migrations/20241019013040_actor_revisions.js @@ -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'); }); };