diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 22556c0e585e85e5bfecafaaa98b2418ce8ee073..9b4d1e3c37a041286e2b1d2a977c8bf2c76c1612 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@ image: docker:19.03.1
 variables:
   DOCKER_TLS_CERTDIR: "/certs"
   IMAGE_TAG: $CI_REGISTRY_IMAGE
-  IMAGE_VER: 1.6.1
+  IMAGE_VER: 1.7.0
 
 services:
   - docker:19.03.1-dind
diff --git a/lib/CF/Schema/Result/ProgramEntry.pm b/lib/CF/Schema/Result/ProgramEntry.pm
index 9e67019fba51c9e24f84e5c6a4632e8d3c63c490..d1d26cbbea1c2fcbe571757ee9be1c096cf1867d 100644
--- a/lib/CF/Schema/Result/ProgramEntry.pm
+++ b/lib/CF/Schema/Result/ProgramEntry.pm
@@ -25,6 +25,8 @@ __PACKAGE__->add_columns(
         discussion_opened
         title
         proposer
+        speakers
+        vote
         description
     ),
 );
diff --git a/openapi.yaml b/openapi.yaml
index ed4dec9a7e60455d04bfaa8753ae86968ffd9ec3..2a3f3d9b8438420273de882c44f8fc5d87c26c98 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -1,7 +1,7 @@
 openapi: 3.0.3
 
 info:
-  version: 1.6.0
+  version: 1.7.0
   title: CF Online
   description: CF Online
   license:
@@ -73,6 +73,12 @@ components:
         proposer:
           type: string
           nullable: true
+        speakers:
+          type: string
+          nullable: true
+        vote:
+          type: string
+          nullable: true
         description:
           type: string
           nullable: true
diff --git a/sql/7/up.sql b/sql/7/up.sql
new file mode 100644
index 0000000000000000000000000000000000000000..4eef887f21eeac8d43e457d23b185a84dcd92a7d
--- /dev/null
+++ b/sql/7/up.sql
@@ -0,0 +1,2 @@
+alter table "program" add column "speakers" text;
+alter table "program" add column "vote" text;