86 lines
3.9 KiB
C#
86 lines
3.9 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using NodaTime;
|
|
|
|
#nullable disable
|
|
|
|
namespace DysonNetwork.Pass.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddCreditAndLevelingRecords : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "experience_records",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
reason_type = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: false),
|
|
reason = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: false),
|
|
delta = table.Column<long>(type: "bigint", nullable: false),
|
|
account_id = table.Column<Guid>(type: "uuid", 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_experience_records", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_experience_records_accounts_account_id",
|
|
column: x => x.account_id,
|
|
principalTable: "accounts",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "social_credit_records",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
reason_type = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: false),
|
|
reason = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: false),
|
|
delta = table.Column<double>(type: "double precision", nullable: false),
|
|
expired_at = table.Column<Instant>(type: "timestamp with time zone", nullable: true),
|
|
account_id = table.Column<Guid>(type: "uuid", 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_social_credit_records", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_social_credit_records_accounts_account_id",
|
|
column: x => x.account_id,
|
|
principalTable: "accounts",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_experience_records_account_id",
|
|
table: "experience_records",
|
|
column: "account_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_social_credit_records_account_id",
|
|
table: "social_credit_records",
|
|
column: "account_id");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "experience_records");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "social_credit_records");
|
|
}
|
|
}
|
|
}
|