using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LightlessSyncServer.Migrations { /// public partial class ChatReportFixes : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "sender_token", table: "reported_chat_messages"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "sender_token", table: "reported_chat_messages", type: "text", nullable: false, defaultValue: ""); } } }