Ricardo
Ricardo
You can keep both columns by specifying the default value for both. ```sql ALTER TABLE SequelizeMeta CHANGE COLUMN createdAt createdAt datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; ALTER TABLE SequelizeMeta CHANGE COLUMN...
> There isn't any documentation on the feature so the only way to discover it is to check the help docs from the command line It's also described here https://github.com/sequelize/cli/tree/master/docs#timestamps...
I think that the reason is the default behaviour of [helm hooks](https://helm.sh/docs/topics/charts_hooks/#hook-deletion-policies) The ServiceAccount is created with these hooks ```yaml metadata: annotations: helm.sh/hook: pre-install,pre-upgrade helm.sh/hook-weight: "-10" ``` And helm documentation...
I'm using `kustomize` `kustomization.yaml` ```yaml apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization helmCharts: - repo: https://airbytehq.github.io/helm-charts releaseName: airbyte name: airbyte version: 0.43.29 valuesFile: helm/airbyte.yaml patchesJson6902: - path: remove-sa-hooks.yaml target: version: v1 kind: ServiceAccount...
hi @cpdeethree, what is the fix you are referring to? I tested your helm chart version `0.45.17` without any patch against my live deployment version `0.43.29` and I got this...