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