Olá, fazendo o processo descrito, o Migration Tool está fazendo a alteração como um Drop e Add ao invés de fazer o rename.A tabela está populada e haverá perda dos dados do preço. O que devo estar fazendo errado?
`PM> Add-Migration Unidade\n Build started... Build succeeded. An operation was scaffolded that may result in the loss of data. Please review the migration for accuracy. To undo this action, use Remove-Migration. PM>
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Preco",
table: "Produtos");
migrationBuilder.AddColumn<double>(
name: "PrecoUnitario",
table: "Produtos",
nullable: false,
defaultValue: 0.0);
migrationBuilder.AddColumn<string>(
name: "Unidade",
table: "Produtos",
nullable: true);
}