Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #49

Merged
merged 2 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion api/v1alpha1/migration_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package v1alpha1

import (
"fmt"

"github.com/samber/lo"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down Expand Up @@ -103,7 +104,7 @@ type FlywayConfiguration struct {
// The default flyway schema to use.
// See https://documentation.red-gate.com/fd/default-schema-184127496.html
// +kubebuilder:validation:Optional
DefaultSchema *string `json:"DefaultSchema"`
DefaultSchema *string `json:"defaultSchema"`
}

// MigrationSource defines the source for the flyway-migrations.
Expand Down
6 changes: 3 additions & 3 deletions config/crd/bases/flyway.davidkarlsen.com_migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ spec:
flywayConfiguration:
description: settings for flyway
properties:
DefaultSchema:
description: The default flyway schema to use. See https://documentation.red-gate.com/fd/default-schema-184127496.html
type: string
commands:
default:
- info
Expand All @@ -85,6 +82,9 @@ spec:
items:
type: string
type: array
defaultSchema:
description: The default flyway schema to use. See https://documentation.red-gate.com/fd/default-schema-184127496.html
type: string
flywayImage:
description: Reference to the flyway image to use.
type: string
Expand Down
Loading