123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class altrcity : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "NameFr",
- table: "CountryLookups",
- type: "nvarchar(max)",
- nullable: false,
- defaultValue: "");
- migrationBuilder.CreateTable(
- name: "Cities",
- columns: table => new
- {
- Id = table.Column<long>(type: "bigint", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- NameAr = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false),
- NameEn = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false),
- NameFr = table.Column<string>(type: "nvarchar(max)", nullable: false),
- CountryId = table.Column<long>(type: "bigint", nullable: false),
- Code = table.Column<string>(type: "nvarchar(max)", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Cities", x => x.Id);
- table.ForeignKey(
- name: "FK_Cities_CountryLookups_CountryId",
- column: x => x.CountryId,
- principalTable: "CountryLookups",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- });
- migrationBuilder.CreateTable(
- name: "LoginOTPs",
- columns: table => new
- {
- Id = table.Column<long>(type: "bigint", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- OTP = table.Column<string>(type: "nvarchar(max)", nullable: false),
- UserId = table.Column<string>(type: "nvarchar(max)", nullable: false),
- CreateDate = table.Column<DateTime>(type: "datetime2", nullable: false),
- ExpireDate = table.Column<DateTime>(type: "datetime2", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_LoginOTPs", x => x.Id);
- });
- migrationBuilder.CreateIndex(
- name: "IX_Cities_CountryId",
- table: "Cities",
- column: "CountryId");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "Cities");
- migrationBuilder.DropTable(
- name: "LoginOTPs");
- migrationBuilder.DropColumn(
- name: "NameFr",
- table: "CountryLookups");
- }
- }
- }
|