From 7e701c015b9462b795f5093dc38106d2dfcb0a99 Mon Sep 17 00:00:00 2001 From: Esben von Buchwald Date: Wed, 22 May 2024 11:21:42 +0200 Subject: [PATCH] Update code-push.sql to match required schema for deployment_version --- code-push.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/code-push.sql b/code-push.sql index 50d6ac9..def1f16 100644 --- a/code-push.sql +++ b/code-push.sql @@ -82,6 +82,7 @@ CREATE TABLE `deployment_version` ( `id` int NOT NULL AUTO_INCREMENT, `deployment_id` int DEFAULT NULL, `app_version` varchar(45) DEFAULT NULL, + `version_num` bigint DEFAULT NULL, `current_package` int DEFAULT NULL, `update_time` bigint DEFAULT NULL, `create_time` bigint DEFAULT NULL,