UNPKG

@directus/api

Version:

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

11 lines (10 loc) 290 B
export async function up(knex) { await knex.schema.alterTable('directus_webhooks', (table) => { table.json('headers'); }); } export async function down(knex) { await knex.schema.alterTable('directus_webhooks', (table) => { table.dropColumn('headers'); }); }