forked from DebaucheryLibrarian/traxxx
Added Snow Valley (Sperm Mania) scraper.
This commit is contained in:
35
migrations/20241016020256_profile_details.js
Normal file
35
migrations/20241016020256_profile_details.js
Normal file
@@ -0,0 +1,35 @@
|
||||
exports.up = async (knex) => {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.integer('leg');
|
||||
table.integer('foot');
|
||||
table.integer('thigh');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.integer('leg');
|
||||
table.integer('foot');
|
||||
table.integer('thigh');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('releases', (table) => {
|
||||
table.integer('video_count');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async (knex) => {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.dropColumn('leg');
|
||||
table.dropColumn('foot');
|
||||
table.dropColumn('thigh');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.dropColumn('leg');
|
||||
table.dropColumn('foot');
|
||||
table.dropColumn('thigh');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('releases', (table) => {
|
||||
table.dropColumn('video_count');
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user