UNPKG

@directus/api

Version:

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

15 lines (14 loc) 338 B
export async function up(knex) { await knex('directus_activity') .update({ action: 'login', }) .where('action', '=', 'authenticate'); } export async function down(knex) { await knex('directus_activity') .update({ action: 'authenticate', }) .where('action', '=', 'login'); }