forked from DebaucheryLibrarian/traxxx
Renamed traxxx utils to common. Added natural lips column.
This commit is contained in:
@@ -53,12 +53,12 @@ exports.up = async (knex) => {
|
||||
table.enum('boobs_placement', ['over', 'under']);
|
||||
table.string('boobs_surgeon');
|
||||
|
||||
table.boolean('natural_butt');
|
||||
table.integer('butt_volume');
|
||||
table.enum('butt_implant', ['bbl', 'lift', 'silicone', 'lipo', 'filler', 'mms']);
|
||||
|
||||
table.boolean('natural_lips');
|
||||
table.integer('lips_volume');
|
||||
|
||||
table.boolean('natural_butt');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
@@ -67,11 +67,12 @@ exports.up = async (knex) => {
|
||||
table.enum('boobs_placement', ['over', 'under']);
|
||||
table.string('boobs_surgeon');
|
||||
|
||||
table.boolean('natural_butt');
|
||||
table.integer('butt_volume');
|
||||
table.enum('butt_implant', ['bbl', 'lift', 'silicone', 'lipo', 'filler', 'mms']);
|
||||
|
||||
table.boolean('natural_lips');
|
||||
table.integer('lips_volume');
|
||||
table.boolean('natural_butt');
|
||||
});
|
||||
};
|
||||
|
||||
@@ -86,11 +87,12 @@ exports.down = async (knex) => {
|
||||
table.dropColumn('boobs_placement');
|
||||
table.dropColumn('boobs_surgeon');
|
||||
|
||||
table.dropColumn('natural_butt');
|
||||
table.dropColumn('butt_volume');
|
||||
table.dropColumn('butt_implant');
|
||||
|
||||
table.dropColumn('natural_lips');
|
||||
table.dropColumn('lips_volume');
|
||||
table.dropColumn('natural_butt');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
@@ -99,10 +101,11 @@ exports.down = async (knex) => {
|
||||
table.dropColumn('boobs_placement');
|
||||
table.dropColumn('boobs_surgeon');
|
||||
|
||||
table.dropColumn('natural_butt');
|
||||
table.dropColumn('butt_volume');
|
||||
table.dropColumn('butt_implant');
|
||||
|
||||
table.dropColumn('natural_lips');
|
||||
table.dropColumn('lips_volume');
|
||||
table.dropColumn('natural_butt');
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user