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