Skip to content

Commit 7749306

Browse files
committed
Fix calling base method in NpgsqlMigrationsSqlGenerator (#3443)
Fixes #3440 (cherry picked from commit 83f2cc3)
1 parent 38b9ef7 commit 7749306

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ protected override void Generate(
182182

183183
using (builder.Indent())
184184
{
185-
base.CreateTableColumns(operation, model, builder);
186-
base.CreateTableConstraints(operation, model, builder);
185+
CreateTableColumns(operation, model, builder);
186+
CreateTableConstraints(operation, model, builder);
187187
builder.AppendLine();
188188
}
189189

0 commit comments

Comments
 (0)