Added agency to actor profile tables.
This commit is contained in:
2
common
2
common
Submodule common updated: 40011a62da...e55818ab44
@@ -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');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user