using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ChatbotApi.Migrations { /// public partial class AddSelectorContenidoToFuentes : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "SelectorContenido", table: "FuentesDeContexto", type: "nvarchar(200)", maxLength: 200, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "SelectorContenido", table: "FuentesDeContexto"); } } }