31 lines
855 B
C#
31 lines
855 B
C#
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Foxnouns.Backend.Database.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
[DbContext(typeof(DatabaseContext))]
|
|||
|
[Migration("20241124201309_AddUserTimezone")]
|
|||
|
public partial class AddUserTimezone : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "timezone",
|
|||
|
table: "users",
|
|||
|
type: "text",
|
|||
|
nullable: true
|
|||
|
);
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(name: "timezone", table: "users");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|