55 lines
2.3 KiB
C#
55 lines
2.3 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using NodaTime;
|
|
|
|
#nullable disable
|
|
|
|
namespace DysonNetwork.Sphere.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddAccountStatuses : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "account_statuses",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
attitude = table.Column<int>(type: "integer", nullable: false),
|
|
is_invisible = table.Column<bool>(type: "boolean", nullable: false),
|
|
is_not_disturb = table.Column<bool>(type: "boolean", nullable: false),
|
|
label = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: true),
|
|
cleared_at = table.Column<Instant>(type: "timestamp with time zone", nullable: true),
|
|
account_id = table.Column<long>(type: "bigint", nullable: false),
|
|
created_at = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
|
|
updated_at = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
|
|
deleted_at = table.Column<Instant>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("pk_account_statuses", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_account_statuses_accounts_account_id",
|
|
column: x => x.account_id,
|
|
principalTable: "accounts",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_account_statuses_account_id",
|
|
table: "account_statuses",
|
|
column: "account_id");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "account_statuses");
|
|
}
|
|
}
|
|
}
|