using Microsoft.EntityFrameworkCore.Migrations;
using NodaTime;
#nullable disable
namespace DysonNetwork.Pass.Migrations
{
    /// 
    public partial class AddCreditAndLevelingRecords : Migration
    {
        /// 
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.CreateTable(
                name: "experience_records",
                columns: table => new
                {
                    id = table.Column(type: "uuid", nullable: false),
                    reason_type = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false),
                    reason = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false),
                    delta = table.Column(type: "bigint", nullable: false),
                    account_id = table.Column(type: "uuid", nullable: false),
                    created_at = table.Column(type: "timestamp with time zone", nullable: false),
                    updated_at = table.Column(type: "timestamp with time zone", nullable: false),
                    deleted_at = table.Column(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(type: "uuid", nullable: false),
                    reason_type = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false),
                    reason = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false),
                    delta = table.Column(type: "double precision", nullable: false),
                    expired_at = table.Column(type: "timestamp with time zone", nullable: true),
                    account_id = table.Column(type: "uuid", nullable: false),
                    created_at = table.Column(type: "timestamp with time zone", nullable: false),
                    updated_at = table.Column(type: "timestamp with time zone", nullable: false),
                    deleted_at = table.Column(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");
        }
        /// 
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropTable(
                name: "experience_records");
            migrationBuilder.DropTable(
                name: "social_credit_records");
        }
    }
}