From 6a202d791b0edf4c07d3613e35a20f1dcfe0157a Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Mon, 27 Jan 2025 17:19:22 +0100 Subject: [PATCH] Fix calling base method in NpgsqlMigrationsSqlGenerator Fixes #3440 --- src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs b/src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs index f93fd5c59..6e09ed6be 100644 --- a/src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs +++ b/src/EFCore.PG/Migrations/NpgsqlMigrationsSqlGenerator.cs @@ -184,8 +184,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(); }