Skip to content

Commit

Permalink
Merge pull request #823 from planetarium/feature/irregular-check-field
Browse files Browse the repository at this point in the history
이레귤러 케이스 확인을 위한 액션 기록 테이블 필드 추가
  • Loading branch information
ipdae authored Dec 3, 2024
2 parents 46df8e2 + 50e4af3 commit 74534a1
Show file tree
Hide file tree
Showing 10 changed files with 9,195 additions and 43 deletions.

Large diffs are not rendered by default.

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");
}
}
}
Loading

0 comments on commit 74534a1

Please sign in to comment.