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.
- package/dist/index.js +2 -1
- 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
|
|
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
|
`);
|