change column nullablility - works (without SQLite - table recreate needed)

This commit is contained in:
Jan Prochazka
2021-07-01 12:01:24 +02:00
parent 7a10b85b4c
commit 35eb5716a5
5 changed files with 57 additions and 17 deletions

View File

@@ -32,7 +32,7 @@ class Dumper extends SqlDumper {
changeColumn(oldcol, newcol, constraints) {
this.put('^alter ^table %f ^change ^column %i %i ', oldcol, oldcol.columnName, newcol.columnName);
this.columnDefinition(newcol, true, true, true);
this.columnDefinition(newcol);
this.inlineConstraints(constraints);
this.endCommand();
}