using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ChatbotApi.Migrations { /// public partial class AddConversacionLogTable : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ConversacionLogs", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), UsuarioMensaje = table.Column(type: "nvarchar(max)", nullable: false), BotRespuesta = table.Column(type: "nvarchar(max)", nullable: false), Fecha = table.Column(type: "datetime2", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ConversacionLogs", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ConversacionLogs"); } } }