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

@@ -281,4 +281,7 @@ export function getAlterTableScript(
driver: EngineDriver
): string {
const plan = createAlterTablePlan(oldTable, newTable, opts, db);
const dmp = driver.createDumper();
plan.run(dmp);
return dmp.s;
}