using Microsoft.EntityFrameworkCore.Migrations; namespace DaSaSo.EntityFramework.Migrations { public partial class StreetAdded : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Street", table: "Clients", type: "text", nullable: false, defaultValue: ""); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Street", table: "Clients"); } } }