hanyadikhetvan-dotnethf/HanyadikHetVan/Data/Migrations/20210502203821_InitDb.cs

60 lines
2.2 KiB
C#

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<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Startdate = table.Column<DateTime>(type: "datetime2", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_WeeklyTimeSpans", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Pauses",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
WeeklyTimeSpanId = table.Column<int>(type: "int", nullable: false),
Startdate = table.Column<DateTime>(type: "datetime2", nullable: false),
Enddate = table.Column<DateTime>(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");
}
}
}