| | 1 | | #pragma warning disable CS1591 |
| | 2 | | #pragma warning disable SA1601 |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using Microsoft.EntityFrameworkCore.Migrations; |
| | 6 | |
|
| | 7 | | namespace Jellyfin.Server.Implementations.Migrations |
| | 8 | | { |
| | 9 | | public partial class AddUsers : Migration |
| | 10 | | { |
| | 11 | | protected override void Up(MigrationBuilder migrationBuilder) |
| | 12 | | { |
| 21 | 13 | | migrationBuilder.CreateTable( |
| 21 | 14 | | name: "Users", |
| 21 | 15 | | schema: "jellyfin", |
| 21 | 16 | | columns: table => new |
| 21 | 17 | | { |
| 21 | 18 | | Id = table.Column<Guid>(nullable: false), |
| 21 | 19 | | Username = table.Column<string>(maxLength: 255, nullable: false), |
| 21 | 20 | | Password = table.Column<string>(maxLength: 65535, nullable: true), |
| 21 | 21 | | EasyPassword = table.Column<string>(maxLength: 65535, nullable: true), |
| 21 | 22 | | MustUpdatePassword = table.Column<bool>(nullable: false), |
| 21 | 23 | | AudioLanguagePreference = table.Column<string>(maxLength: 255, nullable: true), |
| 21 | 24 | | AuthenticationProviderId = table.Column<string>(maxLength: 255, nullable: false), |
| 21 | 25 | | PasswordResetProviderId = table.Column<string>(maxLength: 255, nullable: false), |
| 21 | 26 | | InvalidLoginAttemptCount = table.Column<int>(nullable: false), |
| 21 | 27 | | LastActivityDate = table.Column<DateTime>(nullable: true), |
| 21 | 28 | | LastLoginDate = table.Column<DateTime>(nullable: true), |
| 21 | 29 | | LoginAttemptsBeforeLockout = table.Column<int>(nullable: true), |
| 21 | 30 | | SubtitleMode = table.Column<int>(nullable: false), |
| 21 | 31 | | PlayDefaultAudioTrack = table.Column<bool>(nullable: false), |
| 21 | 32 | | SubtitleLanguagePreference = table.Column<string>(maxLength: 255, nullable: true), |
| 21 | 33 | | DisplayMissingEpisodes = table.Column<bool>(nullable: false), |
| 21 | 34 | | DisplayCollectionsView = table.Column<bool>(nullable: false), |
| 21 | 35 | | EnableLocalPassword = table.Column<bool>(nullable: false), |
| 21 | 36 | | HidePlayedInLatest = table.Column<bool>(nullable: false), |
| 21 | 37 | | RememberAudioSelections = table.Column<bool>(nullable: false), |
| 21 | 38 | | RememberSubtitleSelections = table.Column<bool>(nullable: false), |
| 21 | 39 | | EnableNextEpisodeAutoPlay = table.Column<bool>(nullable: false), |
| 21 | 40 | | EnableAutoLogin = table.Column<bool>(nullable: false), |
| 21 | 41 | | EnableUserPreferenceAccess = table.Column<bool>(nullable: false), |
| 21 | 42 | | MaxParentalAgeRating = table.Column<int>(nullable: true), |
| 21 | 43 | | RemoteClientBitrateLimit = table.Column<int>(nullable: true), |
| 21 | 44 | | InternalId = table.Column<long>(nullable: false), |
| 21 | 45 | | SyncPlayAccess = table.Column<int>(nullable: false), |
| 21 | 46 | | RowVersion = table.Column<uint>(nullable: false) |
| 21 | 47 | | }, |
| 21 | 48 | | constraints: table => |
| 21 | 49 | | { |
| 21 | 50 | | table.PrimaryKey("PK_Users", x => x.Id); |
| 21 | 51 | | }); |
| | 52 | |
|
| 21 | 53 | | migrationBuilder.CreateTable( |
| 21 | 54 | | name: "AccessSchedules", |
| 21 | 55 | | schema: "jellyfin", |
| 21 | 56 | | columns: table => new |
| 21 | 57 | | { |
| 21 | 58 | | Id = table.Column<int>(nullable: false) |
| 21 | 59 | | .Annotation("Sqlite:Autoincrement", true), |
| 21 | 60 | | UserId = table.Column<Guid>(nullable: false), |
| 21 | 61 | | DayOfWeek = table.Column<int>(nullable: false), |
| 21 | 62 | | StartHour = table.Column<double>(nullable: false), |
| 21 | 63 | | EndHour = table.Column<double>(nullable: false) |
| 21 | 64 | | }, |
| 21 | 65 | | constraints: table => |
| 21 | 66 | | { |
| 21 | 67 | | table.PrimaryKey("PK_AccessSchedules", x => x.Id); |
| 21 | 68 | | table.ForeignKey( |
| 21 | 69 | | name: "FK_AccessSchedules_Users_UserId", |
| 21 | 70 | | column: x => x.UserId, |
| 21 | 71 | | principalSchema: "jellyfin", |
| 21 | 72 | | principalTable: "Users", |
| 21 | 73 | | principalColumn: "Id", |
| 21 | 74 | | onDelete: ReferentialAction.Cascade); |
| 21 | 75 | | }); |
| | 76 | |
|
| 21 | 77 | | migrationBuilder.CreateTable( |
| 21 | 78 | | name: "ImageInfos", |
| 21 | 79 | | schema: "jellyfin", |
| 21 | 80 | | columns: table => new |
| 21 | 81 | | { |
| 21 | 82 | | Id = table.Column<int>(nullable: false) |
| 21 | 83 | | .Annotation("Sqlite:Autoincrement", true), |
| 21 | 84 | | UserId = table.Column<Guid>(nullable: true), |
| 21 | 85 | | Path = table.Column<string>(maxLength: 512, nullable: false), |
| 21 | 86 | | LastModified = table.Column<DateTime>(nullable: false) |
| 21 | 87 | | }, |
| 21 | 88 | | constraints: table => |
| 21 | 89 | | { |
| 21 | 90 | | table.PrimaryKey("PK_ImageInfos", x => x.Id); |
| 21 | 91 | | table.ForeignKey( |
| 21 | 92 | | name: "FK_ImageInfos_Users_UserId", |
| 21 | 93 | | column: x => x.UserId, |
| 21 | 94 | | principalSchema: "jellyfin", |
| 21 | 95 | | principalTable: "Users", |
| 21 | 96 | | principalColumn: "Id", |
| 21 | 97 | | onDelete: ReferentialAction.Restrict); |
| 21 | 98 | | }); |
| | 99 | |
|
| 21 | 100 | | migrationBuilder.CreateTable( |
| 21 | 101 | | name: "Permissions", |
| 21 | 102 | | schema: "jellyfin", |
| 21 | 103 | | columns: table => new |
| 21 | 104 | | { |
| 21 | 105 | | Id = table.Column<int>(nullable: false) |
| 21 | 106 | | .Annotation("Sqlite:Autoincrement", true), |
| 21 | 107 | | Kind = table.Column<int>(nullable: false), |
| 21 | 108 | | Value = table.Column<bool>(nullable: false), |
| 21 | 109 | | RowVersion = table.Column<uint>(nullable: false), |
| 21 | 110 | | Permission_Permissions_Guid = table.Column<Guid>(nullable: true) |
| 21 | 111 | | }, |
| 21 | 112 | | constraints: table => |
| 21 | 113 | | { |
| 21 | 114 | | table.PrimaryKey("PK_Permissions", x => x.Id); |
| 21 | 115 | | table.ForeignKey( |
| 21 | 116 | | name: "FK_Permissions_Users_Permission_Permissions_Guid", |
| 21 | 117 | | column: x => x.Permission_Permissions_Guid, |
| 21 | 118 | | principalSchema: "jellyfin", |
| 21 | 119 | | principalTable: "Users", |
| 21 | 120 | | principalColumn: "Id", |
| 21 | 121 | | onDelete: ReferentialAction.Restrict); |
| 21 | 122 | | }); |
| | 123 | |
|
| 21 | 124 | | migrationBuilder.CreateTable( |
| 21 | 125 | | name: "Preferences", |
| 21 | 126 | | schema: "jellyfin", |
| 21 | 127 | | columns: table => new |
| 21 | 128 | | { |
| 21 | 129 | | Id = table.Column<int>(nullable: false) |
| 21 | 130 | | .Annotation("Sqlite:Autoincrement", true), |
| 21 | 131 | | Kind = table.Column<int>(nullable: false), |
| 21 | 132 | | Value = table.Column<string>(maxLength: 65535, nullable: false), |
| 21 | 133 | | RowVersion = table.Column<uint>(nullable: false), |
| 21 | 134 | | Preference_Preferences_Guid = table.Column<Guid>(nullable: true) |
| 21 | 135 | | }, |
| 21 | 136 | | constraints: table => |
| 21 | 137 | | { |
| 21 | 138 | | table.PrimaryKey("PK_Preferences", x => x.Id); |
| 21 | 139 | | table.ForeignKey( |
| 21 | 140 | | name: "FK_Preferences_Users_Preference_Preferences_Guid", |
| 21 | 141 | | column: x => x.Preference_Preferences_Guid, |
| 21 | 142 | | principalSchema: "jellyfin", |
| 21 | 143 | | principalTable: "Users", |
| 21 | 144 | | principalColumn: "Id", |
| 21 | 145 | | onDelete: ReferentialAction.Restrict); |
| 21 | 146 | | }); |
| | 147 | |
|
| 21 | 148 | | migrationBuilder.CreateIndex( |
| 21 | 149 | | name: "IX_AccessSchedules_UserId", |
| 21 | 150 | | schema: "jellyfin", |
| 21 | 151 | | table: "AccessSchedules", |
| 21 | 152 | | column: "UserId"); |
| | 153 | |
|
| 21 | 154 | | migrationBuilder.CreateIndex( |
| 21 | 155 | | name: "IX_ImageInfos_UserId", |
| 21 | 156 | | schema: "jellyfin", |
| 21 | 157 | | table: "ImageInfos", |
| 21 | 158 | | column: "UserId", |
| 21 | 159 | | unique: true); |
| | 160 | |
|
| 21 | 161 | | migrationBuilder.CreateIndex( |
| 21 | 162 | | name: "IX_Permissions_Permission_Permissions_Guid", |
| 21 | 163 | | schema: "jellyfin", |
| 21 | 164 | | table: "Permissions", |
| 21 | 165 | | column: "Permission_Permissions_Guid"); |
| | 166 | |
|
| 21 | 167 | | migrationBuilder.CreateIndex( |
| 21 | 168 | | name: "IX_Preferences_Preference_Preferences_Guid", |
| 21 | 169 | | schema: "jellyfin", |
| 21 | 170 | | table: "Preferences", |
| 21 | 171 | | column: "Preference_Preferences_Guid"); |
| 21 | 172 | | } |
| | 173 | |
|
| | 174 | | protected override void Down(MigrationBuilder migrationBuilder) |
| | 175 | | { |
| 0 | 176 | | migrationBuilder.DropTable( |
| 0 | 177 | | name: "AccessSchedules", |
| 0 | 178 | | schema: "jellyfin"); |
| | 179 | |
|
| 0 | 180 | | migrationBuilder.DropTable( |
| 0 | 181 | | name: "ImageInfos", |
| 0 | 182 | | schema: "jellyfin"); |
| | 183 | |
|
| 0 | 184 | | migrationBuilder.DropTable( |
| 0 | 185 | | name: "Permissions", |
| 0 | 186 | | schema: "jellyfin"); |
| | 187 | |
|
| 0 | 188 | | migrationBuilder.DropTable( |
| 0 | 189 | | name: "Preferences", |
| 0 | 190 | | schema: "jellyfin"); |
| | 191 | |
|
| 0 | 192 | | migrationBuilder.DropTable( |
| 0 | 193 | | name: "Users", |
| 0 | 194 | | schema: "jellyfin"); |
| 0 | 195 | | } |
| | 196 | | } |
| | 197 | | } |