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