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