mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
20 lines
617 B
TypeScript
20 lines
617 B
TypeScript
import { Knex } from "knex";
|
|
|
|
import { TableName } from "../schemas";
|
|
|
|
export async function up(knex: Knex): Promise<void> {
|
|
if (!(await knex.schema.hasColumn(TableName.LdapConfig, "uniqueUserAttribute"))) {
|
|
await knex.schema.alterTable(TableName.LdapConfig, (tb) => {
|
|
tb.string("uniqueUserAttribute").notNullable().defaultTo("");
|
|
});
|
|
}
|
|
}
|
|
|
|
export async function down(knex: Knex): Promise<void> {
|
|
if (await knex.schema.hasColumn(TableName.LdapConfig, "uniqueUserAttribute")) {
|
|
await knex.schema.alterTable(TableName.LdapConfig, (t) => {
|
|
t.dropColumn("uniqueUserAttribute");
|
|
});
|
|
}
|
|
}
|