123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class addHubConnection : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "HubConnections",
- columns: table => new
- {
- Id = table.Column<long>(type: "bigint", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- UserId = table.Column<string>(type: "nvarchar(max)", nullable: true),
- UserName = table.Column<string>(type: "nvarchar(max)", nullable: true),
- SignalrId = table.Column<string>(type: "nvarchar(max)", nullable: true),
- TimeStamp = table.Column<DateTime>(type: "datetime2", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_HubConnections", x => x.Id);
- });
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "HubConnections");
- }
- }
- }
|