AfRApay/AfRApay.Web/Backend/Database/Migrations/20230213181437_InitialCreate.cs

84 lines
2.9 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AfRApay.Web.Backend.Database.Migrations
{
/// <inheritdoc />
public partial class InitialCreate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Config",
columns: table => new
{
Name = table.Column<string>(type: "NVarChar(255)", nullable: false),
Value = table.Column<string>(type: "NVarChar(255)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Config", x => x.Name);
});
migrationBuilder.CreateTable(
name: "Users",
columns: table => new
{
ID = table.Column<long>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
Balance = table.Column<long>(type: "INTEGER", nullable: false),
Nickname = table.Column<string>(type: "NVarChar(255)", nullable: false),
LastIdempotencyKey = table.Column<string>(type: "NVarChar(255)", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Users", x => x.ID);
});
migrationBuilder.CreateTable(
name: "Cards",
columns: table => new
{
CardId = table.Column<string>(type: "NVarChar(255)", nullable: false),
UserId = table.Column<long>(type: "INTEGER", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Cards", x => x.CardId);
table.ForeignKey(
name: "FK_Cards_Users_UserId",
column: x => x.UserId,
principalTable: "Users",
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_Cards_UserId",
table: "Cards",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_Users_Nickname",
table: "Users",
column: "Nickname",
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Cards");
migrationBuilder.DropTable(
name: "Config");
migrationBuilder.DropTable(
name: "Users");
}
}
}