using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MyOffice.Migrations.Postgres.Migrations { /// public partial class gcurrencyshortname : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ShortName", table: "CurrencyGlobals"); migrationBuilder.AddColumn( name: "ShortName", table: "Currencies", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ShortName", table: "Currencies"); migrationBuilder.AddColumn( name: "ShortName", table: "CurrencyGlobals", type: "text", nullable: false, defaultValue: ""); } } }