WebVenta/WebVentaCoche/Migrations/20241216174709_DescriptionsProducts.cs
2024-12-17 14:57:49 +01:00

68 lines
2.0 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace WebVentaCoche.Migrations
{
/// <inheritdoc />
public partial class DescriptionsProducts : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Description",
table: "Products");
migrationBuilder.AlterColumn<string>(
name: "ImagePath",
table: "Products",
type: "nvarchar(max)",
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(max)");
migrationBuilder.AddColumn<string>(
name: "LongDescription",
table: "Products",
type: "nvarchar(max)",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ShortDescription",
table: "Products",
type: "nvarchar(max)",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LongDescription",
table: "Products");
migrationBuilder.DropColumn(
name: "ShortDescription",
table: "Products");
migrationBuilder.AlterColumn<string>(
name: "ImagePath",
table: "Products",
type: "nvarchar(max)",
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "nvarchar(max)",
oldNullable: true);
migrationBuilder.AddColumn<string>(
name: "Description",
table: "Products",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
}
}