-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
7,282 additions
and
5 deletions.
There are no files selected for viewing
1,777 changes: 1,777 additions & 0 deletions
1,777
Intersect.Server/Migrations/MySql/Game/20240330154744_ItemEventTriggerMigration.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
Intersect.Server/Migrations/MySql/Game/20240330154744_ItemEventTriggerMigration.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,29 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace Intersect.Server.Migrations.MySql.Game | ||
{ | ||
/// <inheritdoc /> | ||
public partial class ItemEventTriggerMigration : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<string>( | ||
name: "EventTriggers", | ||
table: "Items", | ||
type: "longtext", | ||
nullable: true) | ||
.Annotation("MySql:CharSet", "utf8mb4"); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "EventTriggers", | ||
table: "Items"); | ||
} | ||
} | ||
} |
Oops, something went wrong.