Files
wwdpublic/Content.Server.Database/Migrations/Postgres/20240407170000_AddClownName.cs
Remuchi b1fe120196 Revert "fix database"
This reverts commit 6c17ee9a6d.
2025-04-20 11:34:35 +07:00

28 lines
751 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Postgres
{
/// <summary>
/// Adds ClownName field to the Profile table
/// </summary>
public partial class AddClownName : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "clown_name",
table: "profile",
type: "text",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "clown_name",
table: "profile");
}
}
}