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 +1 -1
- package/src/schema-mysql.sql +7 -0
package/package.json
CHANGED
package/src/schema-mysql.sql
CHANGED
|
@@ -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;
|