Skip to content

Commit 54dc8a2

Browse files
committed
DropColumn overload in Migrations
1 parent f7f8d09 commit 54dc8a2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Provider/src/FirebirdSql.EntityFrameworkCore.Firebird/Migrations/FbMigrationsSqlGenerator.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ protected override void Generate(AlterColumnOperation operation, IModel model, M
144144
protected override void Generate(AddColumnOperation operation, IModel model, MigrationCommandListBuilder builder)
145145
=> base.Generate(operation, model, builder);
146146

147+
protected override void Generate(DropColumnOperation operation, IModel model, MigrationCommandListBuilder builder)
148+
=> base.Generate(operation, model, builder);
149+
147150
protected override void Generate(RenameColumnOperation operation, IModel model, MigrationCommandListBuilder builder)
148151
{
149152
builder.Append("ALTER TABLE ");

0 commit comments

Comments
 (0)