84 lines
3.4 KiB
C#
84 lines
3.4 KiB
C#
|
|
using System;
|
||
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||
|
|
|
||
|
|
#nullable disable
|
||
|
|
|
||
|
|
namespace JobsMedical.Web.Migrations
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public partial class JobAlerts : Migration
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.CreateTable(
|
||
|
|
name: "JobAlerts",
|
||
|
|
columns: table => new
|
||
|
|
{
|
||
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||
|
|
UserId = table.Column<int>(type: "integer", nullable: false),
|
||
|
|
Label = table.Column<string>(type: "character varying(120)", maxLength: 120, nullable: true),
|
||
|
|
Scope = table.Column<int>(type: "integer", nullable: false),
|
||
|
|
RoleId = table.Column<int>(type: "integer", nullable: true),
|
||
|
|
CityId = table.Column<int>(type: "integer", nullable: true),
|
||
|
|
DistrictId = table.Column<int>(type: "integer", nullable: true),
|
||
|
|
ShiftType = table.Column<int>(type: "integer", nullable: true),
|
||
|
|
EmploymentType = table.Column<int>(type: "integer", nullable: true),
|
||
|
|
MinPay = table.Column<long>(type: "bigint", nullable: true),
|
||
|
|
IsActive = table.Column<bool>(type: "boolean", nullable: false),
|
||
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
||
|
|
},
|
||
|
|
constraints: table =>
|
||
|
|
{
|
||
|
|
table.PrimaryKey("PK_JobAlerts", x => x.Id);
|
||
|
|
table.ForeignKey(
|
||
|
|
name: "FK_JobAlerts_Cities_CityId",
|
||
|
|
column: x => x.CityId,
|
||
|
|
principalTable: "Cities",
|
||
|
|
principalColumn: "Id");
|
||
|
|
table.ForeignKey(
|
||
|
|
name: "FK_JobAlerts_Roles_RoleId",
|
||
|
|
column: x => x.RoleId,
|
||
|
|
principalTable: "Roles",
|
||
|
|
principalColumn: "Id",
|
||
|
|
onDelete: ReferentialAction.SetNull);
|
||
|
|
table.ForeignKey(
|
||
|
|
name: "FK_JobAlerts_Users_UserId",
|
||
|
|
column: x => x.UserId,
|
||
|
|
principalTable: "Users",
|
||
|
|
principalColumn: "Id",
|
||
|
|
onDelete: ReferentialAction.Cascade);
|
||
|
|
});
|
||
|
|
|
||
|
|
migrationBuilder.CreateIndex(
|
||
|
|
name: "IX_JobAlerts_CityId",
|
||
|
|
table: "JobAlerts",
|
||
|
|
column: "CityId");
|
||
|
|
|
||
|
|
migrationBuilder.CreateIndex(
|
||
|
|
name: "IX_JobAlerts_IsActive",
|
||
|
|
table: "JobAlerts",
|
||
|
|
column: "IsActive");
|
||
|
|
|
||
|
|
migrationBuilder.CreateIndex(
|
||
|
|
name: "IX_JobAlerts_RoleId",
|
||
|
|
table: "JobAlerts",
|
||
|
|
column: "RoleId");
|
||
|
|
|
||
|
|
migrationBuilder.CreateIndex(
|
||
|
|
name: "IX_JobAlerts_UserId",
|
||
|
|
table: "JobAlerts",
|
||
|
|
column: "UserId");
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.DropTable(
|
||
|
|
name: "JobAlerts");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|