using System; using Microsoft.EntityFrameworkCore.Migrations; namespace COA.EnterpriseServices.DataAccess.EntityFramework.Migrations { public partial class settlementattempt : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "SettlementAttempts", columns: table => new { Id = table.Column(nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Created = table.Column(nullable: false), Modified = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_SettlementAttempts", x => x.Id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "SettlementAttempts"); } } }