DocSpace-client/migrations/mysql/FeedDbContext/20220831152410_FeedDbContext_Upgrade1.cs

28 lines
782 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ASC.Migrations.MySql.Migrations.FeedDb
{
public partial class FeedDbContext_Upgrade1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "context_id",
table: "feed_aggregate",
type: "text",
nullable: true,
collation: "utf8_general_ci")
.Annotation("MySql:CharSet", "utf8");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "context_id",
table: "feed_aggregate");
}
}
}