27 lines
699 B
C#
27 lines
699 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace EllieBot.Migrations.Mysql
|
|||
|
{
|
|||
|
public partial class feedtext : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "message",
|
|||
|
table: "feedsub",
|
|||
|
type: "longtext",
|
|||
|
nullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "message",
|
|||
|
table: "feedsub");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|