Skip to content

Commit

Permalink
fix: missing migrations for PRs #2208 #2250 #2263 #2269 (#2379)
Browse files Browse the repository at this point in the history
* fix: Missing MySQL Migration for PR #2208

* fix: Missing MySQL Migration for PR #2250

* fix: Missing MySQL Migration for PR #2263

* fix: Missing MySQL Migration for PR #2269
  • Loading branch information
lodicolo committed Aug 25, 2024
1 parent b46a210 commit f7829d3
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 f7829d3

Please sign in to comment.