Files
FictionArchive/FictionArchive.Service.UserNovelDataService/Migrations/20260120014840_AddReadingLists.cs
gamer147 48ee43c4f6
All checks were successful
CI / build-backend (pull_request) Successful in 1m32s
CI / build-frontend (pull_request) Successful in 42s
[FA-24] Reading lists
2026-01-19 22:06:34 -05:00

90 lines
3.8 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
using NodaTime;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace FictionArchive.Service.UserNovelDataService.Migrations
{
/// <inheritdoc />
public partial class AddReadingLists : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "ReadingLists",
columns: table => new
{
Id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
UserId = table.Column<Guid>(type: "uuid", nullable: false),
Name = table.Column<string>(type: "text", nullable: false),
Description = table.Column<string>(type: "text", nullable: true),
CreatedTime = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
LastUpdatedTime = table.Column<Instant>(type: "timestamp with time zone", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ReadingLists", x => x.Id);
table.ForeignKey(
name: "FK_ReadingLists_Users_UserId",
column: x => x.UserId,
principalTable: "Users",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "ReadingListItems",
columns: table => new
{
Id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
ReadingListId = table.Column<int>(type: "integer", nullable: false),
NovelId = table.Column<long>(type: "bigint", nullable: false),
Order = table.Column<int>(type: "integer", nullable: false),
CreatedTime = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
LastUpdatedTime = table.Column<Instant>(type: "timestamp with time zone", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ReadingListItems", x => x.Id);
table.ForeignKey(
name: "FK_ReadingListItems_ReadingLists_ReadingListId",
column: x => x.ReadingListId,
principalTable: "ReadingLists",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_ReadingListItems_ReadingListId_NovelId",
table: "ReadingListItems",
columns: new[] { "ReadingListId", "NovelId" },
unique: true);
migrationBuilder.CreateIndex(
name: "IX_ReadingListItems_ReadingListId_Order",
table: "ReadingListItems",
columns: new[] { "ReadingListId", "Order" });
migrationBuilder.CreateIndex(
name: "IX_ReadingLists_UserId",
table: "ReadingLists",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "ReadingListItems");
migrationBuilder.DropTable(
name: "ReadingLists");
}
}
}