Files
tbd-station-14/Content.Server.Database/Migrations/Postgres/20220108185749_add-species.cs
2023-02-19 10:59:52 +11:00

27 lines
694 B
C#

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