How to drop column with FluentMigrator?
Found it myself: It has to go as separate statement. Alter.Table(“Items”).InSchema(“Pricing”) .AddColumn(“CanBe”).AsBoolean().NotNullable(); Delete.Column(“AllowSubscription”).FromTable(“Items”).InSchema(“Pricing”);