-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #534 from area363/release/70-to-dev
Release/70 to dev
- Loading branch information
Showing
75 changed files
with
11,938 additions
and
162 deletions.
There are no files selected for viewing
222 changes: 148 additions & 74 deletions
222
NineChronicles.DataProvider.Executable/Commands/MySqlMigration.cs
Large diffs are not rendered by default.
Oops, something went wrong.
2,829 changes: 2,829 additions & 0 deletions
2,829
...es.DataProvider.Executable/Migrations/20231017125653_AddItemEnhancementResult.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
45 changes: 45 additions & 0 deletions
45
NineChronicles.DataProvider.Executable/Migrations/20231017125653_AddItemEnhancementResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
} | ||
} |
Oops, something went wrong.