specificNullabilityImplementation

This commit is contained in:
Jan Prochazka
2024-09-11 15:43:14 +02:00
parent f74533b42f
commit 08fce96691
5 changed files with 5 additions and 5 deletions

View File

@@ -246,7 +246,7 @@ export class SqlDumper implements AlterProcessor {
this.putRaw(' ');
this.specialColumnOptions(column);
if (includeNullable && !this.dialect?.specificNotNull) {
if (includeNullable && !this.dialect?.specificNullabilityImplementation) {
this.put(column.notNull ? '^not ^null' : '^null');
}
if (includeDefault && column.defaultValue?.trim()) {