Files
ss14-wega/Content.Server.Database/Migrations/Postgres/20241018195223_Status.cs
Zekins 9858c0dbce ERP release (#1)
* ERP release

* fixes
2024-11-09 11:00:33 +03:00

27 lines
688 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Postgres
{
public partial class Status : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "status",
table: "profile",
type: "text",
nullable: false,
defaultValue: "");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "status",
table: "profile");
}
}
}