UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

8 lines (7 loc) 262 B
//#region src/database/migrations/20210422A-remove-files-interface.ts async function up(knex) { await knex("directus_fields").update({ interface: "many-to-many" }).where({ interface: "files" }); } async function down(_knex) {} //#endregion export { down, up };