-
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 #823 from planetarium/feature/irregular-check-field
이레귤러 케이스 확인을 위한 액션 기록 테이블 필드 추가
- Loading branch information
Showing
10 changed files
with
9,195 additions
and
43 deletions.
There are no files selected for viewing
4,548 changes: 4,548 additions & 0 deletions
4,548
....DataProvider.Executable/Migrations/20241202131743_AddHackAndSlashAvatarLevel.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
...hronicles.DataProvider.Executable/Migrations/20241202131743_AddHackAndSlashAvatarLevel.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,26 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace NineChronicles.DataProvider.Executable.Migrations | ||
{ | ||
public partial class AddHackAndSlashAvatarLevel : Migration | ||
{ | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<int>( | ||
name: "CurrentLevel", | ||
table: "HackAndSlashes", | ||
type: "int", | ||
nullable: false, | ||
defaultValue: 0); | ||
} | ||
|
||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "CurrentLevel", | ||
table: "HackAndSlashes"); | ||
} | ||
} | ||
} |
Oops, something went wrong.