using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace NetinaShop.Repository.Migrations { /// public partial class EditBrandAddEnglishName : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Name", schema: "public", table: "Brands", newName: "PersianName"); migrationBuilder.AddColumn( name: "EnglishName", schema: "public", table: "Brands", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EnglishName", schema: "public", table: "Brands"); migrationBuilder.RenameColumn( name: "PersianName", schema: "public", table: "Brands", newName: "Name"); } } }