Skip to content

Commit

Permalink
Merge pull request #534 from area363/release/70-to-dev
Browse files Browse the repository at this point in the history
Release/70 to dev
  • Loading branch information
area363 authored Nov 7, 2023
2 parents 32206cf + aff17ee commit cda4813
Show file tree
Hide file tree
Showing 75 changed files with 11,938 additions and 162 deletions.
222 changes: 148 additions & 74 deletions NineChronicles.DataProvider.Executable/Commands/MySqlMigration.cs

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using Microsoft.EntityFrameworkCore.Migrations;

#nullable disable

namespace NineChronicles.DataProvider.Executable.Migrations
{
public partial class AddItemEnhancementResult : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<long>(
name: "Exp",
table: "ItemEnhancements",
type: "bigint",
nullable: true);

migrationBuilder.AddColumn<int>(
name: "Level",
table: "ItemEnhancements",
type: "int",
nullable: true);

migrationBuilder.AddColumn<int>(
name: "SheetId",
table: "ItemEnhancements",
type: "int",
nullable: true);
}

protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Exp",
table: "ItemEnhancements");

migrationBuilder.DropColumn(
name: "Level",
table: "ItemEnhancements");

migrationBuilder.DropColumn(
name: "SheetId",
table: "ItemEnhancements");
}
}
}
Loading

0 comments on commit cda4813

Please sign in to comment.