30 lines
		
	
	
		
			825 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			825 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
 | 
						|
#nullable disable
 | 
						|
 | 
						|
namespace DysonNetwork.Pass.Migrations
 | 
						|
{
 | 
						|
    /// <inheritdoc />
 | 
						|
    public partial class AddLevelingBonusMultiplier : Migration
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.AddColumn<double>(
 | 
						|
                name: "bonus_multiplier",
 | 
						|
                table: "experience_records",
 | 
						|
                type: "double precision",
 | 
						|
                nullable: false,
 | 
						|
                defaultValue: 0.0);
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.DropColumn(
 | 
						|
                name: "bonus_multiplier",
 | 
						|
                table: "experience_records");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |