6
StarHorizon_Public/Content.Server.Database/Migrations/Sqlite/20201203093351_ClothingAndPronouns.cs
2026-01-18 12:53:36 +03:00

36 lines
1006 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace Content.Server.Database.Migrations.Sqlite
{
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");
}
}
}