You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace TaskManager.EntityFramework.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class z202506030002 : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "TaskAllocation",
|
|
columns: table => new
|
|
{
|
|
UId = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|
TaskName = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false),
|
|
TableName = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false),
|
|
Creator = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false),
|
|
Subscriber = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false),
|
|
WriteState = table.Column<bool>(type: "bit", nullable: false),
|
|
ReadState = table.Column<bool>(type: "bit", nullable: false),
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
Remark = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
TaskId = table.Column<Guid>(type: "uniqueidentifier", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_TaskAllocation", x => x.UId);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "TaskAllocation");
|
|
}
|
|
}
|
|
}
|
|
|