Skip to content

Commit 83f2cc3

Browse files
authored
Fix calling base method in NpgsqlMigrationsSqlGenerator (#3443)
Fixes #3440
1 parent 91101a3 commit 83f2cc3

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)