|
|
|
@ -0,0 +1,934 @@
|
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace Ombi.Store.Migrations.OmbiPostgres
|
|
|
|
|
{
|
|
|
|
|
public partial class Initial : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetRoles",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
NormalizedName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetRoles", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetUsers",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Alias = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ProviderUserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
LastLoggedIn = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
Language = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
StreamingCountry = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
MovieRequestLimit = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
EpisodeRequestLimit = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
MusicRequestLimit = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
MovieRequestLimitType = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
EpisodeRequestLimitType = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
MusicRequestLimitType = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
UserAccessToken = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
MediaServerToken = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
PasswordHash = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
SecurityStamp = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
NormalizedUserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
Email = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
NormalizedEmail = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
|
|
|
EmailConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
PhoneNumber = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
TwoFactorEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
LockoutEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
AccessFailedCount = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetUsers", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Audit",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
DateTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Description = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
AuditType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
AuditArea = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
User = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Audit", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "IssueCategory",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
Value = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_IssueCategory", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "NotificationTemplates",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
NotificationType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Agent = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Subject = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Message = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_NotificationTemplates", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "PlexWatchlistUserError",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
MediaServerToken = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_PlexWatchlistUserError", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "RecentlyAddedLog",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
Type = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ContentType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ContentId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
EpisodeNumber = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
SeasonNumber = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
AlbumId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
AddedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_RecentlyAddedLog", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "RequestQueue",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
RequestId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Type = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Dts = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Error = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Completed = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
RetryCount = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_RequestQueue", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "TvRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
TvDbId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ExternalProviderId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ImdbId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
QualityOverride = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
RootFolder = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
LanguageProfile = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
Overview = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
PosterPath = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Background = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ReleaseDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Status = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
TotalSeasons = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_TvRequests", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetRoleClaims",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
RoleId = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetRoleClaims_AspNetRoles_RoleId",
|
|
|
|
|
column: x => x.RoleId,
|
|
|
|
|
principalTable: "AspNetRoles",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AlbumRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ForeignAlbumId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ForeignArtistId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Disk = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Cover = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Rating = table.Column<decimal>(type: "numeric", nullable: false),
|
|
|
|
|
ReleaseDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
ArtistName = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Approved = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsApproved = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
RequestedDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Available = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsAvailable = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
RequestedUserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Denied = table.Column<bool>(type: "boolean", nullable: true),
|
|
|
|
|
MarkedAsDenied = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
DeniedReason = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestedByAlias = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Source = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AlbumRequests", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AlbumRequests_AspNetUsers_RequestedUserId",
|
|
|
|
|
column: x => x.RequestedUserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetUserClaims",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetUserClaims", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetUserClaims_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetUserLogins",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
ProviderKey = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
ProviderDisplayName = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey });
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetUserLogins_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetUserRoles",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
RoleId = table.Column<string>(type: "text", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId });
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetUserRoles_AspNetRoles_RoleId",
|
|
|
|
|
column: x => x.RoleId,
|
|
|
|
|
principalTable: "AspNetRoles",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetUserRoles_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "AspNetUserTokens",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Value = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name });
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_AspNetUserTokens_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "MobileDevices",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
Token = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
AddedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_MobileDevices", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_MobileDevices_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "MovieRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
TheMovieDbId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
IssueId = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
RootPathOverride = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
QualityOverride = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Has4KRequest = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
Approved4K = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsApproved4K = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
RequestedDate4k = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Available4K = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsAvailable4K = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
Denied4K = table.Column<bool>(type: "boolean", nullable: true),
|
|
|
|
|
MarkedAsDenied4K = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
DeniedReason4K = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
LangCode = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Approved = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsApproved = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
RequestedDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Available = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsAvailable = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
RequestedUserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Denied = table.Column<bool>(type: "boolean", nullable: true),
|
|
|
|
|
MarkedAsDenied = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
DeniedReason = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestedByAlias = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Source = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ImdbId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Overview = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
PosterPath = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ReleaseDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
DigitalReleaseDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
Status = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Background = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_MovieRequests", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_MovieRequests_AspNetUsers_RequestedUserId",
|
|
|
|
|
column: x => x.RequestedUserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "NotificationUserId",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
PlayerId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
AddedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_NotificationUserId", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_NotificationUserId_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "RequestLog",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
RequestId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
EpisodeCount = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_RequestLog", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_RequestLog_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "RequestSubscription",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_RequestSubscription", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_RequestSubscription_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Tokens",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
Token = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Tokens", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Tokens_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "UserNotificationPreferences",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Agent = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
Value = table.Column<string>(type: "text", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_UserNotificationPreferences", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_UserNotificationPreferences_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "UserQualityProfiles",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
SonarrQualityProfileAnime = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
SonarrRootPathAnime = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
SonarrRootPath = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
SonarrQualityProfile = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RadarrRootPath = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RadarrQualityProfile = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Radarr4KRootPath = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Radarr4KQualityProfile = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_UserQualityProfiles", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_UserQualityProfiles_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Votes",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
RequestId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
VoteType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Deleted = table.Column<bool>(type: "boolean", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Votes", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Votes_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "ChildRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ParentRequestId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
IssueId = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
SeriesType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Approved = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsApproved = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
RequestedDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Available = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
MarkedAsAvailable = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
RequestedUserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Denied = table.Column<bool>(type: "boolean", nullable: true),
|
|
|
|
|
MarkedAsDenied = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
DeniedReason = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
RequestedByAlias = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Source = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_ChildRequests", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_ChildRequests_AspNetUsers_RequestedUserId",
|
|
|
|
|
column: x => x.RequestedUserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_ChildRequests_TvRequests_ParentRequestId",
|
|
|
|
|
column: x => x.ParentRequestId,
|
|
|
|
|
principalTable: "TvRequests",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Issues",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestType = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ProviderId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
RequestId = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
Subject = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Description = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
IssueCategoryId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Status = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ResovledDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
|
|
|
CreatedDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
UserReportedId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
IssueId = table.Column<int>(type: "integer", nullable: true)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Issues", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Issues_AspNetUsers_UserReportedId",
|
|
|
|
|
column: x => x.UserReportedId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Issues_ChildRequests_IssueId",
|
|
|
|
|
column: x => x.IssueId,
|
|
|
|
|
principalTable: "ChildRequests",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Issues_IssueCategory_IssueCategoryId",
|
|
|
|
|
column: x => x.IssueCategoryId,
|
|
|
|
|
principalTable: "IssueCategory",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Issues_MovieRequests_IssueId",
|
|
|
|
|
column: x => x.IssueId,
|
|
|
|
|
principalTable: "MovieRequests",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "SeasonRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
SeasonNumber = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Overview = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
ChildRequestId = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_SeasonRequests", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_SeasonRequests_ChildRequests_ChildRequestId",
|
|
|
|
|
column: x => x.ChildRequestId,
|
|
|
|
|
principalTable: "ChildRequests",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "IssueComments",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
UserId = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Comment = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
IssuesId = table.Column<int>(type: "integer", nullable: true),
|
|
|
|
|
Date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_IssueComments", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_IssueComments_AspNetUsers_UserId",
|
|
|
|
|
column: x => x.UserId,
|
|
|
|
|
principalTable: "AspNetUsers",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_IssueComments_Issues_IssuesId",
|
|
|
|
|
column: x => x.IssuesId,
|
|
|
|
|
principalTable: "Issues",
|
|
|
|
|
principalColumn: "Id");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "EpisodeRequests",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
EpisodeNumber = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Title = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
AirDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
|
|
|
Url = table.Column<string>(type: "text", nullable: true),
|
|
|
|
|
Available = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
Approved = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
Requested = table.Column<bool>(type: "boolean", nullable: false),
|
|
|
|
|
SeasonId = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_EpisodeRequests", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_EpisodeRequests_SeasonRequests_SeasonId",
|
|
|
|
|
column: x => x.SeasonId,
|
|
|
|
|
principalTable: "SeasonRequests",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_AlbumRequests_RequestedUserId",
|
|
|
|
|
table: "AlbumRequests",
|
|
|
|
|
column: "RequestedUserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_AspNetRoleClaims_RoleId",
|
|
|
|
|
table: "AspNetRoleClaims",
|
|
|
|
|
column: "RoleId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "RoleNameIndex",
|
|
|
|
|
table: "AspNetRoles",
|
|
|
|
|
column: "NormalizedName",
|
|
|
|
|
unique: true);
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_AspNetUserClaims_UserId",
|
|
|
|
|
table: "AspNetUserClaims",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_AspNetUserLogins_UserId",
|
|
|
|
|
table: "AspNetUserLogins",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_AspNetUserRoles_RoleId",
|
|
|
|
|
table: "AspNetUserRoles",
|
|
|
|
|
column: "RoleId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "EmailIndex",
|
|
|
|
|
table: "AspNetUsers",
|
|
|
|
|
column: "NormalizedEmail");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "UserNameIndex",
|
|
|
|
|
table: "AspNetUsers",
|
|
|
|
|
column: "NormalizedUserName",
|
|
|
|
|
unique: true);
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_ChildRequests_ParentRequestId",
|
|
|
|
|
table: "ChildRequests",
|
|
|
|
|
column: "ParentRequestId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_ChildRequests_RequestedUserId",
|
|
|
|
|
table: "ChildRequests",
|
|
|
|
|
column: "RequestedUserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_EpisodeRequests_SeasonId",
|
|
|
|
|
table: "EpisodeRequests",
|
|
|
|
|
column: "SeasonId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_IssueComments_IssuesId",
|
|
|
|
|
table: "IssueComments",
|
|
|
|
|
column: "IssuesId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_IssueComments_UserId",
|
|
|
|
|
table: "IssueComments",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Issues_IssueCategoryId",
|
|
|
|
|
table: "Issues",
|
|
|
|
|
column: "IssueCategoryId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Issues_IssueId",
|
|
|
|
|
table: "Issues",
|
|
|
|
|
column: "IssueId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Issues_UserReportedId",
|
|
|
|
|
table: "Issues",
|
|
|
|
|
column: "UserReportedId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_MobileDevices_UserId",
|
|
|
|
|
table: "MobileDevices",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_MovieRequests_RequestedUserId",
|
|
|
|
|
table: "MovieRequests",
|
|
|
|
|
column: "RequestedUserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_NotificationUserId_UserId",
|
|
|
|
|
table: "NotificationUserId",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_RequestLog_UserId",
|
|
|
|
|
table: "RequestLog",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_RequestSubscription_UserId",
|
|
|
|
|
table: "RequestSubscription",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_SeasonRequests_ChildRequestId",
|
|
|
|
|
table: "SeasonRequests",
|
|
|
|
|
column: "ChildRequestId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Tokens_UserId",
|
|
|
|
|
table: "Tokens",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_UserNotificationPreferences_UserId",
|
|
|
|
|
table: "UserNotificationPreferences",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_UserQualityProfiles_UserId",
|
|
|
|
|
table: "UserQualityProfiles",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Votes_UserId",
|
|
|
|
|
table: "Votes",
|
|
|
|
|
column: "UserId");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AlbumRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetRoleClaims");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetUserClaims");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetUserLogins");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetUserRoles");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetUserTokens");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Audit");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "EpisodeRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "IssueComments");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "MobileDevices");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "NotificationTemplates");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "NotificationUserId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "PlexWatchlistUserError");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "RecentlyAddedLog");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "RequestLog");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "RequestQueue");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "RequestSubscription");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Tokens");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "UserNotificationPreferences");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "UserQualityProfiles");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Votes");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetRoles");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "SeasonRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Issues");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "ChildRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "IssueCategory");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "MovieRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "TvRequests");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "AspNetUsers");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|