From 7ca1104fd17c0ff7c3c9f6618b89328a645d57fb Mon Sep 17 00:00:00 2001 From: Kazuki Sakamoto Date: Tue, 2 Feb 2021 02:05:46 -0800 Subject: [PATCH 1/3] Change virt type from INT to BIGINT --- .../conf/ddl/postgres/migrations/V9__Change_virt_type.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 cuebot/src/main/resources/conf/ddl/postgres/migrations/V9__Change_virt_type.sql diff --git a/cuebot/src/main/resources/conf/ddl/postgres/migrations/V9__Change_virt_type.sql b/cuebot/src/main/resources/conf/ddl/postgres/migrations/V9__Change_virt_type.sql new file mode 100644 index 000000000..dd88ffb20 --- /dev/null +++ b/cuebot/src/main/resources/conf/ddl/postgres/migrations/V9__Change_virt_type.sql @@ -0,0 +1,4 @@ +-- Change virt type from INT to BIGINT. + +ALTER TABLE "proc" ALTER COLUMN "int_virt_used" TYPE BIGINT; +ALTER TABLE "proc" ALTER COLUMN "int_virt_max_used" TYPE BIGINT; From f50b84496855009df5d6504516ed0b2c8549a2a1 Mon Sep 17 00:00:00 2001 From: Kazuki Sakamoto Date: Tue, 2 Feb 2021 02:29:15 -0800 Subject: [PATCH 2/3] Bump minor version number --- VERSION.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.in b/VERSION.in index 5a2a5806d..eb49d7c7f 100644 --- a/VERSION.in +++ b/VERSION.in @@ -1 +1 @@ -0.6 +0.7 From 5b2ee2004bd7a9699d444a5723a92d1b4436ce0c Mon Sep 17 00:00:00 2001 From: Lars van der Bijl <285658+larsbijl@users.noreply.github.com> Date: Sun, 7 Feb 2021 16:35:25 +0000 Subject: [PATCH 3/3] Update VERSION.in --- VERSION.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.in b/VERSION.in index eb49d7c7f..aec258df7 100644 --- a/VERSION.in +++ b/VERSION.in @@ -1 +1 @@ -0.7 +0.8