using System; using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class idp : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "eva_idp_plan", columns: table => new { id = table.Column(nullable: false), created = table.Column(nullable: false), updated = table.Column(nullable: false), isActive = table.Column(nullable: false), create_evaluation_detail_id = table.Column(nullable: true), develop = table.Column(maxLength: 1000, nullable: true), development_method = table.Column(maxLength: 1000, nullable: true), start_date = table.Column(nullable: true), end_date = table.Column(nullable: true) }, constraints: table => { table.PrimaryKey("PK_eva_idp_plan", x => x.id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "eva_idp_plan"); } } }