UNPKG

@directus/api

Version:

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

15 lines (14 loc) 475 B
import { getHelpers } from '../helpers/index.js'; export async function up(knex) { const helper = getHelpers(knex).schema; await helper.changeToType('directus_notifications', 'timestamp', 'timestamp', { nullable: true, default: knex.fn.now(), }); } export async function down(knex) { const helper = getHelpers(knex).schema; await helper.changeToType('directus_notifications', 'timestamp', 'timestamp', { nullable: false, }); }