using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MessengerApi.Db.Sql.Migrations
{
///
public partial class ShortenPayloadLifespanColumnName : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "PayloadLifespanInSeconds",
table: "Messages",
newName: "LifespanInSeconds");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "LifespanInSeconds",
table: "Messages",
newName: "PayloadLifespanInSeconds");
}
}
}