feat: added missing alter statement

This commit is contained in:
=
2025-10-20 18:47:47 +05:30
parent 223f4982a9
commit f42dd7f74c

View File

@@ -38,7 +38,7 @@ export async function up(knex: Knex): Promise<void> {
);
await knex.schema.alterTable(TableName.Identity, (t) => {
t.uuid("orgId").notNullable();
t.uuid("orgId").notNullable().alter();
});
}
}