6
StarHorizon_Public/Content.Server.Database/Migrations/Postgres/20201203093409_ClothingAndPronouns.cs
2026-01-24 12:49:55 +03:00

36 lines
1008 B
C#

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