@boundless-oss/atlas
Version:
Atlas - MCP Server for comprehensive startup project management
20 lines • 742 B
TypeScript
import type { SQLiteManager } from '../sqlite-manager.js';
/**
* Migration to remove 'planning' status from the agile module
*
* This migration:
* 1. Updates all stories with 'planning' status to 'backlog'
* 2. Updates all sprints with 'planning' status to 'active'
* 3. Updates all epics with 'planning' status to 'planned'
*/
export declare function removePlanningStatus(db: SQLiteManager): Promise<void>;
/**
* Run the migration
*/
export declare function up(db: SQLiteManager): Promise<void>;
/**
* Rollback the migration (not recommended)
* This would require adding 'planning' status back to the codebase
*/
export declare function down(db: SQLiteManager): Promise<void>;
//# sourceMappingURL=remove-planning-status.d.ts.map