fp/services/strapi/database/migrations/2023.05.15T02.44.00.000Z.dr...

12 lines
329 B
JavaScript
Raw Permalink Normal View History

2024-01-20 16:16:14 +00:00
// previously, we tagged vods directly on the vod content-type
// now, we use tag-vod-relation to relate tags to vods.
// thus, we want to get rid of vod.tags
// and also tag.vods
module.exports = {
async up(knex) {
console.log('2023.05.15 - drop tags_vods_links')
await knex.schema.dropTable('tags_vods_links')
}
}