using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Data.Migrations { /// public partial class PersonalToC : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "AppUserTableOfContent", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), PageNumber = table.Column(type: "INTEGER", nullable: false), Title = table.Column(type: "TEXT", nullable: true), SeriesId = table.Column(type: "INTEGER", nullable: false), ChapterId = table.Column(type: "INTEGER", nullable: false), VolumeId = table.Column(type: "INTEGER", nullable: false), LibraryId = table.Column(type: "INTEGER", nullable: false), BookScrollId = table.Column(type: "TEXT", nullable: true), Created = table.Column(type: "TEXT", nullable: false), CreatedUtc = table.Column(type: "TEXT", nullable: false), LastModified = table.Column(type: "TEXT", nullable: false), LastModifiedUtc = table.Column(type: "TEXT", nullable: false), AppUserId = table.Column(type: "INTEGER", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AppUserTableOfContent", x => x.Id); table.ForeignKey( name: "FK_AppUserTableOfContent_AspNetUsers_AppUserId", column: x => x.AppUserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_AppUserTableOfContent_Chapter_ChapterId", column: x => x.ChapterId, principalTable: "Chapter", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_AppUserTableOfContent_Series_SeriesId", column: x => x.SeriesId, principalTable: "Series", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_AppUserTableOfContent_AppUserId", table: "AppUserTableOfContent", column: "AppUserId"); migrationBuilder.CreateIndex( name: "IX_AppUserTableOfContent_ChapterId", table: "AppUserTableOfContent", column: "ChapterId"); migrationBuilder.CreateIndex( name: "IX_AppUserTableOfContent_SeriesId", table: "AppUserTableOfContent", column: "SeriesId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "AppUserTableOfContent"); } } }