12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class altrTeamUser : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "AssignedUserName",
- table: "TeamUser",
- type: "nvarchar(max)",
- nullable: false,
- defaultValue: "");
- migrationBuilder.InsertData(
- table: "AspNetRoles",
- columns: new[] { "Id", "ConcurrencyStamp", "CreateDate", "CreateUser", "DeleteUserId", "IsAdmin", "IsDeleted", "Name", "NormalizedName", "UpdateDate", "UpdateUser" },
- values: new object[] { "CO5B3B92-2311-48F8-9DEC-F9FAEF1F211R", null, new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), null, null, false, false, "Contractor", "CONTRACTOR", null, null });
- migrationBuilder.UpdateData(
- table: "AttachmentTypes",
- keyColumn: "Id",
- keyValue: 6L,
- column: "NameAr",
- value: "التسجيل التجارى");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DeleteData(
- table: "AspNetRoles",
- keyColumn: "Id",
- keyValue: "CO5B3B92-2311-48F8-9DEC-F9FAEF1F211R");
- migrationBuilder.DropColumn(
- name: "AssignedUserName",
- table: "TeamUser");
- migrationBuilder.UpdateData(
- table: "AttachmentTypes",
- keyColumn: "Id",
- keyValue: 6L,
- column: "NameAr",
- value: "شهادة الاحتراف");
- }
- }
- }
|