mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 11:07:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			641 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			641 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
 | 
						|
namespace API.Data.Migrations
 | 
						|
{
 | 
						|
    public partial class MangaFileToPages : Migration
 | 
						|
    {
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.RenameColumn(
 | 
						|
                name: "NumberOfPages",
 | 
						|
                table: "MangaFile",
 | 
						|
                newName: "Pages");
 | 
						|
        }
 | 
						|
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.RenameColumn(
 | 
						|
                name: "Pages",
 | 
						|
                table: "MangaFile",
 | 
						|
                newName: "NumberOfPages");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |