mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-30 10:12:28 -04:00 
			
		
		
		
	Co-authored-by: Elry <144011449+ElryWeeb@users.noreply.github.com> Co-authored-by: AlienHack <the4got10@windowslive.com> Co-authored-by: William Brockhus <pickeringw@gmail.com> Co-authored-by: Shivam Amin <xShivam.Amin@gmail.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.EntityFrameworkCore.Migrations;
 | |
| 
 | |
| #nullable disable
 | |
| 
 | |
| namespace API.Data.Migrations
 | |
| {
 | |
|     /// <inheritdoc />
 | |
|     public partial class PdfSettings : Migration
 | |
|     {
 | |
|         /// <inheritdoc />
 | |
|         protected override void Up(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.AddColumn<int>(
 | |
|                 name: "PdfLayoutMode",
 | |
|                 table: "AppUserPreferences",
 | |
|                 type: "INTEGER",
 | |
|                 nullable: false,
 | |
|                 defaultValue: 0);
 | |
| 
 | |
|             migrationBuilder.AddColumn<int>(
 | |
|                 name: "PdfScrollMode",
 | |
|                 table: "AppUserPreferences",
 | |
|                 type: "INTEGER",
 | |
|                 nullable: false,
 | |
|                 defaultValue: 0);
 | |
| 
 | |
|             migrationBuilder.AddColumn<int>(
 | |
|                 name: "PdfSpreadMode",
 | |
|                 table: "AppUserPreferences",
 | |
|                 type: "INTEGER",
 | |
|                 nullable: false,
 | |
|                 defaultValue: 0);
 | |
| 
 | |
|             migrationBuilder.AddColumn<int>(
 | |
|                 name: "PdfTheme",
 | |
|                 table: "AppUserPreferences",
 | |
|                 type: "INTEGER",
 | |
|                 nullable: false,
 | |
|                 defaultValue: 0);
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override void Down(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "PdfLayoutMode",
 | |
|                 table: "AppUserPreferences");
 | |
| 
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "PdfScrollMode",
 | |
|                 table: "AppUserPreferences");
 | |
| 
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "PdfSpreadMode",
 | |
|                 table: "AppUserPreferences");
 | |
| 
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "PdfTheme",
 | |
|                 table: "AppUserPreferences");
 | |
|         }
 | |
|     }
 | |
| }
 |