From f59b2a574bbc9b2334fa36d2b853dc1df1264df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Sun, 3 Jan 2021 22:47:55 +0100 Subject: [PATCH] Pridana polozka pro recniky --- .gitlab-ci.yml | 2 +- lib/CF/Schema/Result/ProgramEntry.pm | 2 ++ openapi.yaml | 8 +++++++- sql/7/up.sql | 2 ++ 4 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 sql/7/up.sql diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22556c0..9b4d1e3 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 9e67019..d1d26cb 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 ed4dec9..2a3f3d9 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 0000000..4eef887 --- /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; -- GitLab