Skip to content

Commit badb51e

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

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
@@ -184,8 +184,8 @@ protected override void Generate(
184184

185185
using (builder.Indent())
186186
{
187-
base.CreateTableColumns(operation, model, builder);
188-
base.CreateTableConstraints(operation, model, builder);
187+
CreateTableColumns(operation, model, builder);
188+
CreateTableConstraints(operation, model, builder);
189189
builder.AppendLine();
190190
}
191191

0 commit comments

Comments
 (0)