82 lines
2.3 KiB
C#
82 lines
2.3 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Nexus.Api.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddTaskDetailFields : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "AssignedTo",
|
|
table: "Tasks",
|
|
type: "character varying(60)",
|
|
maxLength: 60,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<DateTimeOffset>(
|
|
name: "CreatedAt",
|
|
table: "Tasks",
|
|
type: "timestamp with time zone",
|
|
nullable: false,
|
|
defaultValueSql: "NOW()");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Detail",
|
|
table: "Tasks",
|
|
type: "character varying(2000)",
|
|
maxLength: 2000,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Source",
|
|
table: "Tasks",
|
|
type: "character varying(60)",
|
|
maxLength: 60,
|
|
nullable: false,
|
|
defaultValue: "bao");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Tasks_AssignedTo",
|
|
table: "Tasks",
|
|
column: "AssignedTo");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Tasks_Source",
|
|
table: "Tasks",
|
|
column: "Source");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Tasks_AssignedTo",
|
|
table: "Tasks");
|
|
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Tasks_Source",
|
|
table: "Tasks");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "AssignedTo",
|
|
table: "Tasks");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "CreatedAt",
|
|
table: "Tasks");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "Detail",
|
|
table: "Tasks");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "Source",
|
|
table: "Tasks");
|
|
}
|
|
}
|
|
}
|