123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class attendance : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<bool>(
- name: "IsDeleted",
- table: "Companies",
- type: "bit",
- nullable: false,
- oldClrType: typeof(bool),
- oldType: "bit")
- .Annotation("Relational:ColumnOrder", 7);
- migrationBuilder.AddColumn<string>(
- name: "DeleteUserId",
- table: "Companies",
- type: "nvarchar(450)",
- maxLength: 450,
- nullable: true)
- .Annotation("Relational:ColumnOrder", 8);
- migrationBuilder.CreateTable(
- name: "AttendanceLogs",
- columns: table => new
- {
- Id = table.Column<long>(type: "bigint", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- Method = table.Column<string>(type: "nvarchar(max)", nullable: false),
- QueryString = table.Column<string>(type: "nvarchar(max)", nullable: true),
- Input = table.Column<string>(type: "nvarchar(max)", nullable: true),
- CreateDate = table.Column<DateTime>(type: "datetime2", nullable: false),
- CreateUser = table.Column<string>(type: "nvarchar(max)", nullable: false),
- ServerIP = table.Column<string>(type: "nvarchar(max)", nullable: true),
- Channel = table.Column<string>(type: "nvarchar(max)", nullable: true),
- UserIP = table.Column<string>(type: "nvarchar(max)", nullable: true),
- ServiceResponseTimeInSeconds = table.Column<string>(type: "nvarchar(max)", nullable: false),
- ErrorCode = table.Column<string>(type: "nvarchar(max)", nullable: false),
- ErrorDescription = table.Column<string>(type: "nvarchar(max)", nullable: false),
- InnerException = table.Column<string>(type: "nvarchar(max)", nullable: true),
- userAgent = table.Column<string>(type: "nvarchar(max)", nullable: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_AttendanceLogs", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "Attendances",
- 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),
- IsDeleted = table.Column<bool>(type: "bit", nullable: false),
- DeleteUserId = table.Column<string>(type: "nvarchar(450)", maxLength: 450, nullable: true),
- UserId = table.Column<string>(type: "nvarchar(max)", nullable: false),
- UserName = table.Column<string>(type: "nvarchar(max)", nullable: true),
- CheckInTime = table.Column<DateTime>(type: "datetime2", nullable: true),
- CheckOutTime = table.Column<DateTime>(type: "datetime2", nullable: true),
- AttendanceDate = table.Column<DateTime>(type: "datetime2", nullable: false),
- LeaveType = table.Column<int>(type: "int", nullable: false),
- LeaveReason = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Attendances", x => x.Id);
- });
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "AttendanceLogs");
- migrationBuilder.DropTable(
- name: "Attendances");
- migrationBuilder.DropColumn(
- name: "DeleteUserId",
- table: "Companies");
- migrationBuilder.AlterColumn<bool>(
- name: "IsDeleted",
- table: "Companies",
- type: "bit",
- nullable: false,
- oldClrType: typeof(bool),
- oldType: "bit")
- .OldAnnotation("Relational:ColumnOrder", 7);
- }
- }
- }
|