plugins/ruflo-migrations/commands/migrate.md
Migration commands:
migrate create <name> -- Create a new migration with sequential numbering.
NNN_<name>.up.sql and NNN_<name>.down.sql filesmcp__claude-flow__agentdb_hierarchical-storemigrate up [--dry-run] -- Apply pending migrations.
--dry-run, display the SQL for each pending migration without executing.up.sql file in order, recording resultsmigrations namespacemigrate down [--steps N] -- Rollback the last N migrations (default: 1).
.down.sql files in reverse ordermigrations namespacemigrate status -- Show migration status.
migrate validate -- Validate pending migrations for safety.
.up.sql and .down.sql filesmigrate history -- Show full migration execution history.
migrations namespace