Skip to content

Commit

Permalink
Fix calling base method in NpgsqlMigrationsSqlGenerator (#3443)
Browse files Browse the repository at this point in the history
Fixes #3440

(cherry picked from commit 83f2cc3)
  • Loading branch information
roji committed Jan 27, 2025
1 parent 38b9ef7 commit 7749306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ protected override void Generate(

using (builder.Indent())
{
base.CreateTableColumns(operation, model, builder);
base.CreateTableConstraints(operation, model, builder);
CreateTableColumns(operation, model, builder);
CreateTableConstraints(operation, model, builder);
builder.AppendLine();
}

Expand Down

0 comments on commit 7749306

Please sign in to comment.