29 lines
795 B
C#
29 lines
795 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MessengerApi.Db.Npg.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class RenameTtlColumn : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "PayloadLifespanInSeconds",
|
|
table: "Messages",
|
|
newName: "TimeToLiveInSeconds");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "TimeToLiveInSeconds",
|
|
table: "Messages",
|
|
newName: "PayloadLifespanInSeconds");
|
|
}
|
|
}
|
|
}
|