create column test

This commit is contained in:
Jan Prochazka
2021-06-28 08:00:28 +02:00
parent 67a793038b
commit 4c1ac0757c
3 changed files with 27 additions and 4 deletions

View File

@@ -158,6 +158,12 @@ export class AlterPlan {
newName,
});
}
run(processor: AlterProcessor) {
for (const op of this.operations) {
runAlterOperation(op, processor);
}
}
}
export function runAlterOperation(op: AlterOperation, processor: AlterProcessor) {