mindpm 1.2.32 → 1.2.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -219,7 +219,8 @@ function runMigrations(db2) {
219
219
  updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
220
220
  completed_at DATETIME
221
221
  );
222
- INSERT INTO tasks_new SELECT * FROM tasks;
222
+ INSERT INTO tasks_new (id, project_id, seq, title, description, status, priority, tags, parent_task_id, blocked_by, created_at, updated_at, completed_at)
223
+ SELECT id, project_id, seq, title, description, status, priority, tags, parent_task_id, blocked_by, created_at, updated_at, completed_at FROM tasks;
223
224
  DROP TABLE tasks;
224
225
  ALTER TABLE tasks_new RENAME TO tasks;
225
226
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindpm",
3
- "version": "1.2.32",
3
+ "version": "1.2.33",
4
4
  "description": "Persistent project memory for LLMs via MCP. Never re-explain your project again.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",