Skip to content

Commit cf7b614

Browse files
sql script semicolon fix (#2590)
1 parent 1b395a1 commit cf7b614

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/sql/91_create_chart_metadata.up.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ CREATE TABLE "public"."chart_ref_metadata" (
77

88
---Inserting Records-----
99
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
10-
('Rollout Deployment', 'Chart to deploy an advanced version of Deployment that supports blue-green and canary deployments. It requires a rollout controller to run inside the cluster to function.')
10+
('Rollout Deployment', 'Chart to deploy an advanced version of Deployment that supports blue-green and canary deployments. It requires a rollout controller to run inside the cluster to function.');
1111
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
12-
('CronJob & Job', 'Chart to deploy a Job/CronJob. Job is a controller object that represents a finite task and CronJob can be used to schedule creation of Jobs.')
12+
('CronJob & Job', 'Chart to deploy a Job/CronJob. Job is a controller object that represents a finite task and CronJob can be used to schedule creation of Jobs.');
1313
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
14-
('Knative', 'Chart to deploy an Open-Source Enterprise-level solution to deploy Serverless apps.')
14+
('Knative', 'Chart to deploy an Open-Source Enterprise-level solution to deploy Serverless apps.');
1515
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
16-
('Deployment', 'Chart to deploy a Deployment that runs multiple replicas of your application and automatically replaces any instances that fail or become unresponsive.')
16+
('Deployment', 'Chart to deploy a Deployment that runs multiple replicas of your application and automatically replaces any instances that fail or become unresponsive.');

0 commit comments

Comments
 (0)