From 31bc54e7e6c8baa9315b9f2fd0a787fe61039565 Mon Sep 17 00:00:00 2001 From: = Date: Sun, 21 Sep 2025 17:57:43 +0530 Subject: [PATCH] fix: resolved pipeline failing --- .../20250921120821_k8-auth-name-increase.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/backend/src/db/migrations/20250921120821_k8-auth-name-increase.ts b/backend/src/db/migrations/20250921120821_k8-auth-name-increase.ts index 3555231a7..9cd8a8d4f 100644 --- a/backend/src/db/migrations/20250921120821_k8-auth-name-increase.ts +++ b/backend/src/db/migrations/20250921120821_k8-auth-name-increase.ts @@ -1,4 +1,5 @@ import { Knex } from "knex"; + import { TableName } from "../schemas"; export async function up(knex: Knex): Promise { @@ -8,9 +9,9 @@ export async function up(knex: Knex): Promise { if (hasAllowedNamespaces || hasAllowedNames || hasAllowedAudience) { await knex.schema.alterTable(TableName.IdentityKubernetesAuth, (t) => { - if (hasAllowedNames) t.string("allowedNames", 1000).alter(); - if (hasAllowedNamespaces) t.string("allowedNamespaces", 1000).alter(); - if (hasAllowedAudience) t.string("allowedAudience", 1000).alter(); + if (hasAllowedNames) t.string("allowedNames", 1000).notNullable().alter(); + if (hasAllowedNamespaces) t.string("allowedNamespaces", 1000).notNullable().alter(); + if (hasAllowedAudience) t.string("allowedAudience", 1000).notNullable().alter(); }); } } @@ -22,9 +23,9 @@ export async function down(knex: Knex): Promise { if (hasAllowedNamespaces || hasAllowedNames || hasAllowedAudience) { await knex.schema.alterTable(TableName.IdentityKubernetesAuth, (t) => { - if (hasAllowedNames) t.string("allowedNames", 255).alter(); - if (hasAllowedNamespaces) t.string("allowedNamespaces", 255).alter(); - if (hasAllowedAudience) t.string("allowedAudience", 255).alter(); + if (hasAllowedNames) t.string("allowedNames", 255).notNullable().alter(); + if (hasAllowedNamespaces) t.string("allowedNamespaces", 255).notNullable().alter(); + if (hasAllowedAudience) t.string("allowedAudience", 255).notNullable().alter(); }); } }