Skip to content

Commit

Permalink
Merge branch 'main' into patch-8
Browse files Browse the repository at this point in the history
  • Loading branch information
dhmello authored Aug 29, 2024
2 parents 8b475c8 + f7829d3 commit fdc3483
Show file tree
Hide file tree
Showing 9 changed files with 7,282 additions and 5 deletions.

Large diffs are not rendered by default.

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

0 comments on commit fdc3483

Please sign in to comment.