exports.up = async (knex) => { await knex.schema.alterTable('actors_profiles', (table) => { table.string('hair_type'); table.decimal('shoe_size'); table.string('blood_type'); }); await knex.schema.alterTable('actors', (table) => { table.string('hair_type'); table.decimal('shoe_size'); table.string('blood_type'); }); }; exports.down = async (knex) => { await knex.schema.alterTable('actors_profiles', (table) => { table.dropColumn('hair_type'); table.dropColumn('shoe_size'); table.dropColumn('blood_type'); }); await knex.schema.alterTable('actors', (table) => { table.dropColumn('hair_type'); table.dropColumn('shoe_size'); table.dropColumn('blood_type'); }); };