@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
9 lines (8 loc) • 378 B
TypeScript
import type { Knex } from 'knex';
/**
* NOTE:
* Not all databases allow (or support) recursive onUpdate/onDelete triggers. MS SQL / Oracle flat out deny creating them,
* Postgres behaves erratic on those triggers, not sure if MySQL / Maria plays nice either.
*/
export declare function up(knex: Knex): Promise<void>;
export declare function down(knex: Knex): Promise<void>;