Skip to content

Commit 762e8ac

Browse files
committed
sessionize refresh ready for test
1 parent 43a4efc commit 762e8ac

14 files changed

Lines changed: 1058 additions & 27 deletions

File tree

PocketDDD.Server/PocketDDD.Server.DB/Migrations/20240101161102_Sessionize.Designer.cs

Lines changed: 360 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using Microsoft.EntityFrameworkCore.Migrations;
2+
3+
#nullable disable
4+
5+
namespace PocketDDD.Server.DB.Migrations
6+
{
7+
public partial class Sessionize : Migration
8+
{
9+
protected override void Up(MigrationBuilder migrationBuilder)
10+
{
11+
migrationBuilder.AddColumn<string>(
12+
name: "SessionizeId",
13+
table: "EventDetail",
14+
type: "nvarchar(max)",
15+
nullable: false,
16+
defaultValue: "");
17+
}
18+
19+
protected override void Down(MigrationBuilder migrationBuilder)
20+
{
21+
migrationBuilder.DropColumn(
22+
name: "SessionizeId",
23+
table: "EventDetail");
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)