mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			856 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			856 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
 | 
						|
namespace API.Data.Migrations
 | 
						|
{
 | 
						|
    public partial class ServerSettingsKey : Migration
 | 
						|
    {
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.AlterColumn<int>(
 | 
						|
                name: "Key",
 | 
						|
                table: "ServerSetting",
 | 
						|
                type: "INTEGER",
 | 
						|
                nullable: false,
 | 
						|
                oldClrType: typeof(string),
 | 
						|
                oldType: "TEXT");
 | 
						|
        }
 | 
						|
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.AlterColumn<string>(
 | 
						|
                name: "Key",
 | 
						|
                table: "ServerSetting",
 | 
						|
                type: "TEXT",
 | 
						|
                nullable: false,
 | 
						|
                oldClrType: typeof(int),
 | 
						|
                oldType: "INTEGER");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |