using System; using Microsoft.EntityFrameworkCore.Migrations; namespace HanyadikHetVan.Data.Migrations { public partial class InitDb : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "WeeklyTimeSpans", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Startdate = table.Column(type: "datetime2", nullable: false) }, constraints: table => { table.PrimaryKey("PK_WeeklyTimeSpans", x => x.Id); }); migrationBuilder.CreateTable( name: "Pauses", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), WeeklyTimeSpanId = table.Column(type: "int", nullable: false), Startdate = table.Column(type: "datetime2", nullable: false), Enddate = table.Column(type: "datetime2", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Pauses", x => x.Id); table.ForeignKey( name: "FK_Pauses_WeeklyTimeSpans_WeeklyTimeSpanId", column: x => x.WeeklyTimeSpanId, principalTable: "WeeklyTimeSpans", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_Pauses_WeeklyTimeSpanId", table: "Pauses", column: "WeeklyTimeSpanId"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Pauses"); migrationBuilder.DropTable( name: "WeeklyTimeSpans"); } } }