forked from DebaucheryLibrarian/traxxx
Added agency to actor profile tables.
This commit is contained in:
@@ -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');
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user