ework-web 0.10.88 → 0.10.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-web",
3
- "version": "0.10.88",
3
+ "version": "0.10.89",
4
4
  "type": "module",
5
5
  "description": "ework-web — standalone multi-project issue tracker. Local SQLite-backed, no external API dependency. Bun + TypeScript + SSR HTML.",
6
6
  "license": "MIT",
@@ -79,7 +79,8 @@ CREATE TABLE IF NOT EXISTS {{comments}} (
79
79
  UNIQUE uq_comments_upstream (upstream_comment_id),
80
80
  CONSTRAINT {{fk_comments_issue}} FOREIGN KEY (issue_id) REFERENCES {{issues}}(id) ON DELETE CASCADE,
81
81
  CONSTRAINT {{fk_comments_author}} FOREIGN KEY (author) REFERENCES {{users}}(login),
82
- model VARCHAR(128) NOT NULL DEFAULT '',
82
+ model VARCHAR(128) NOT NULL DEFAULT ''
83
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
83
84
  CREATE INDEX comments_issue_created ON {{comments}} (issue_id, created_at);
84
85
  CREATE INDEX comments_author ON {{comments}} (author);
85
86