mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
fix: increased service name size to 1000
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import { Knex } from "knex";
|
||||
import { TableName } from "../schemas";
|
||||
|
||||
export async function up(knex: Knex): Promise<void> {
|
||||
const hasAllowedNamespaces = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedNamespaces");
|
||||
const hasAllowedNames = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedNames");
|
||||
const hasAllowedAudience = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedAudience");
|
||||
|
||||
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();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export async function down(knex: Knex): Promise<void> {
|
||||
const hasAllowedNamespaces = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedNamespaces");
|
||||
const hasAllowedNames = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedNames");
|
||||
const hasAllowedAudience = await knex.schema.hasColumn(TableName.IdentityKubernetesAuth, "allowedAudience");
|
||||
|
||||
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();
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user