12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class altrProjectTeams : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "Desc",
- table: "Projects",
- type: "nvarchar(max)",
- nullable: false,
- defaultValue: "");
- migrationBuilder.CreateTable(
- name: "ProjectTeam",
- columns: table => new
- {
- Id = table.Column<long>(type: "bigint", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- CreateUser = table.Column<string>(type: "nvarchar(450)", maxLength: 450, nullable: true),
- UpdateUser = table.Column<string>(type: "nvarchar(450)", maxLength: 450, nullable: true),
- CreateDate = table.Column<DateTime>(type: "datetime2", nullable: false),
- UpdateDate = table.Column<DateTime>(type: "datetime2", nullable: true),
- ProjectId = table.Column<long>(type: "bigint", nullable: false),
- TeamId = table.Column<long>(type: "bigint", nullable: true),
- AssignedUserId = table.Column<string>(type: "nvarchar(max)", nullable: false),
- AssignedUserName = table.Column<string>(type: "nvarchar(max)", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_ProjectTeam", x => x.Id);
- table.ForeignKey(
- name: "FK_ProjectTeam_Projects_TeamId",
- column: x => x.TeamId,
- principalTable: "Projects",
- principalColumn: "Id");
- });
- migrationBuilder.CreateIndex(
- name: "IX_ProjectTeam_TeamId",
- table: "ProjectTeam",
- column: "TeamId");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "ProjectTeam");
- migrationBuilder.DropColumn(
- name: "Desc",
- table: "Projects");
- }
- }
- }
|