using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DysonNetwork.Sphere.Migrations { /// public partial class IndexedMessageStatus : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateIndex( name: "ix_chat_statuses_message_id_sender_id", table: "chat_statuses", columns: new[] { "message_id", "sender_id" }, unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "ix_chat_statuses_message_id_sender_id", table: "chat_statuses"); } } }