UNPKG

@directus/api

Version:

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

11 lines (10 loc) 307 B
export async function up(knex) { await knex.schema.alterTable('directus_notifications', (table) => { table.setNullable('sender'); }); } export async function down(knex) { await knex.schema.alterTable('directus_notifications', (table) => { table.dropNullable('sender'); }); }