'use strict'; /** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.up = async function(knex) { // Placeholder for missing migration // Original migration 20250502181500_add_initial_system_workflows.cjs was missing. // This placeholder is to allow subsequent migrations to run. // Ensure any necessary setup from the original migration is handled manually or in a new migration if needed. console.warn('Running placeholder for missing migration: 20250502181500_add_initial_system_workflows.cjs'); return Promise.resolve(); }; /** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.down = async function(knex) { // Placeholder for missing migration console.warn('Running placeholder (down) for missing migration: 20250502181500_add_initial_system_workflows.cjs'); return Promise.resolve(); };