using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MTWorkHR.Infrastructure.Migrations
{
///
public partial class addTeamMeeting : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Comment",
table: "UserTaskHistories",
type: "nvarchar(500)",
maxLength: 500,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(500)",
oldMaxLength: 500);
migrationBuilder.AlterColumn(
name: "FileName",
table: "UserTaskAttachments",
type: "nvarchar(250)",
maxLength: 250,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(250)",
oldMaxLength: 250);
migrationBuilder.AddColumn(
name: "CreateDate",
table: "Projects",
type: "datetime2",
nullable: false,
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified))
.Annotation("Relational:ColumnOrder", 3);
migrationBuilder.AddColumn(
name: "CreateUser",
table: "Projects",
type: "nvarchar(450)",
maxLength: 450,
nullable: true)
.Annotation("Relational:ColumnOrder", 1);
migrationBuilder.AddColumn(
name: "DeleteUserId",
table: "Projects",
type: "nvarchar(450)",
maxLength: 450,
nullable: true)
.Annotation("Relational:ColumnOrder", 8);
migrationBuilder.AddColumn(
name: "IsDeleted",
table: "Projects",
type: "bit",
nullable: false,
defaultValue: false)
.Annotation("Relational:ColumnOrder", 7);
migrationBuilder.AddColumn(
name: "UpdateDate",
table: "Projects",
type: "datetime2",
nullable: true)
.Annotation("Relational:ColumnOrder", 4);
migrationBuilder.AddColumn(
name: "UpdateUser",
table: "Projects",
type: "nvarchar(450)",
maxLength: 450,
nullable: true)
.Annotation("Relational:ColumnOrder", 2);
migrationBuilder.CreateTable(
name: "Meetings",
columns: table => new
{
Id = table.Column(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
CreateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
UpdateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
CreateDate = table.Column(type: "datetime2", nullable: false),
UpdateDate = table.Column(type: "datetime2", nullable: true),
IsDeleted = table.Column(type: "bit", nullable: false),
DeleteUserId = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
Title = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false),
Description = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true),
MeetingDateTime = table.Column(type: "datetime2", nullable: false),
MeetingLink = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Meetings", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Teams",
columns: table => new
{
Id = table.Column(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
CreateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
UpdateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
CreateDate = table.Column(type: "datetime2", nullable: false),
UpdateDate = table.Column(type: "datetime2", nullable: true),
IsDeleted = table.Column(type: "bit", nullable: false),
DeleteUserId = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
NameAr = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false),
NameEn = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Teams", x => x.Id);
});
migrationBuilder.CreateTable(
name: "UserTaskLogs",
columns: table => new
{
Id = table.Column(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Method = table.Column(type: "nvarchar(max)", nullable: false),
QueryString = table.Column(type: "nvarchar(max)", nullable: true),
Input = table.Column(type: "nvarchar(max)", nullable: true),
CreateDate = table.Column(type: "datetime2", nullable: false),
CreateUser = table.Column(type: "nvarchar(max)", nullable: false),
ServerIP = table.Column(type: "nvarchar(max)", nullable: true),
Channel = table.Column(type: "nvarchar(max)", nullable: true),
UserIP = table.Column(type: "nvarchar(max)", nullable: true),
ServiceResponseTimeInSeconds = table.Column(type: "nvarchar(max)", nullable: false),
ErrorCode = table.Column(type: "nvarchar(max)", nullable: false),
ErrorDescription = table.Column(type: "nvarchar(max)", nullable: false),
InnerException = table.Column(type: "nvarchar(max)", nullable: true),
userAgent = table.Column(type: "nvarchar(max)", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_UserTaskLogs", x => x.Id);
});
migrationBuilder.CreateTable(
name: "MeetingUser",
columns: table => new
{
Id = table.Column(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
CreateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
UpdateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
CreateDate = table.Column(type: "datetime2", nullable: false),
UpdateDate = table.Column(type: "datetime2", nullable: true),
MeetingId = table.Column(type: "bigint", nullable: false),
AssignedUserId = table.Column(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_MeetingUser", x => x.Id);
table.ForeignKey(
name: "FK_MeetingUser_Meetings_MeetingId",
column: x => x.MeetingId,
principalTable: "Meetings",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "TeamUser",
columns: table => new
{
Id = table.Column(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
CreateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
UpdateUser = table.Column(type: "nvarchar(450)", maxLength: 450, nullable: true),
CreateDate = table.Column(type: "datetime2", nullable: false),
UpdateDate = table.Column(type: "datetime2", nullable: true),
TeamId = table.Column(type: "bigint", nullable: false),
AssignedUserId = table.Column(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_TeamUser", x => x.Id);
table.ForeignKey(
name: "FK_TeamUser_Teams_TeamId",
column: x => x.TeamId,
principalTable: "Teams",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_MeetingUser_MeetingId",
table: "MeetingUser",
column: "MeetingId");
migrationBuilder.CreateIndex(
name: "IX_TeamUser_TeamId",
table: "TeamUser",
column: "TeamId");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "MeetingUser");
migrationBuilder.DropTable(
name: "TeamUser");
migrationBuilder.DropTable(
name: "UserTaskLogs");
migrationBuilder.DropTable(
name: "Meetings");
migrationBuilder.DropTable(
name: "Teams");
migrationBuilder.DropColumn(
name: "CreateDate",
table: "Projects");
migrationBuilder.DropColumn(
name: "CreateUser",
table: "Projects");
migrationBuilder.DropColumn(
name: "DeleteUserId",
table: "Projects");
migrationBuilder.DropColumn(
name: "IsDeleted",
table: "Projects");
migrationBuilder.DropColumn(
name: "UpdateDate",
table: "Projects");
migrationBuilder.DropColumn(
name: "UpdateUser",
table: "Projects");
migrationBuilder.AlterColumn(
name: "Comment",
table: "UserTaskHistories",
type: "nvarchar(500)",
maxLength: 500,
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "nvarchar(500)",
oldMaxLength: 500,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "FileName",
table: "UserTaskAttachments",
type: "nvarchar(250)",
maxLength: 250,
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "nvarchar(250)",
oldMaxLength: 250,
oldNullable: true);
}
}
}