ework-web 0.10.81 → 0.10.82

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.81",
3
+ "version": "0.10.82",
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",
@@ -211,3 +211,10 @@ CREATE TABLE IF NOT EXISTS {{project_members}} (
211
211
  CONSTRAINT {{fk_pm_user}} FOREIGN KEY (user_login) REFERENCES {{users}}(login) ON DELETE CASCADE
212
212
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
213
213
  CREATE INDEX project_members_user ON {{project_members}} (user_login);
214
+
215
+ CREATE TABLE IF NOT EXISTS {{config}} (
216
+ id BIGINT AUTO_INCREMENT PRIMARY KEY,
217
+ akey VARCHAR(255) NOT NULL UNIQUE,
218
+ value TEXT NOT NULL,
219
+ updated_at VARCHAR(40) NOT NULL
220
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;